Skip to content

Commit 54c8233

Browse files
committed
osc/rdma: bump the default max dynamic attachments to 64
This commit increaes the osc_rdma_max_attach variable from 32 to 64. The new default is kept low due to the small number of registration resources on some systems (Cray Aries). A larger max attachement value can be set by the user on other systems. Signed-off-by: Nathan Hjelm <hjelmn@google.com>
1 parent 6649aef commit 54c8233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/osc/rdma/osc_rdma_component.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ static int ompi_osc_rdma_component_register (void)
219219
MCA_BASE_VAR_SCOPE_LOCAL, &mca_osc_rdma_component.buffer_size);
220220
free(description_str);
221221

222-
mca_osc_rdma_component.max_attach = 32;
222+
mca_osc_rdma_component.max_attach = 64;
223223
opal_asprintf(&description_str, "Maximum number of buffers that can be attached to a dynamic window. "
224224
"Keep in mind that each attached buffer will use a potentially limited "
225225
"resource (default: %d)", mca_osc_rdma_component.max_attach);

0 commit comments

Comments
 (0)