Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
MPICH-BlueGene
Commits
bc08655f
Commit
bc08655f
authored
Nov 14, 2014
by
Kenneth Raffenetti
Committed by
Antonio J. Pena
Nov 19, 2014
Browse files
portals4: raise list size limit
Signed-off-by:
Antonio J. Pena
<
apenya@mcs.anl.gov
>
parent
d459c025
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_init.c
View file @
bc08655f
...
...
@@ -14,6 +14,7 @@
#define UNEXPECTED_HDR_COUNT 32768
#define EQ_COUNT 32768
#define LIST_SIZE 32768
#define NID_KEY "NID"
#define PID_KEY "PID"
#define PTI_KEY "PTI"
...
...
@@ -180,6 +181,8 @@ static int ptl_init(MPIDI_PG_t *pg_p, int pg_rank, char **bc_val_p, int *val_max
desired
.
max_unexpected_headers
=
UNEXPECTED_HDR_COUNT
;
if
(
desired
.
max_eqs
<
EQ_COUNT
&&
getenv
(
"PTL_LIM_MAX_EQS"
)
==
NULL
)
desired
.
max_eqs
=
EQ_COUNT
;
if
(
desired
.
max_list_size
<
LIST_SIZE
&&
getenv
(
"PTL_LIM_MAX_LIST_SIZE"
)
==
NULL
)
desired
.
max_list_size
=
LIST_SIZE
;
/* do the real init */
ret
=
PtlNIInit
(
PTL_IFACE_DEFAULT
,
PTL_NI_MATCHING
|
PTL_NI_PHYSICAL
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment