We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b2a09 commit fe4ef14Copy full SHA for fe4ef14
ompi/mca/pml/ucx/pml_ucx.c
@@ -72,8 +72,8 @@ mca_pml_ucx_module_t ompi_pml_ucx = {
72
.pml_mrecv = mca_pml_ucx_mrecv,
73
.pml_dump = mca_pml_ucx_dump,
74
.pml_ft_event = NULL,
75
- .pml_max_contextid = 1ul << (PML_UCX_CONTEXT_BITS),
76
- .pml_max_tag = 1ul << (PML_UCX_TAG_BITS - 1)
+ .pml_max_contextid = (1ul << (PML_UCX_CONTEXT_BITS)) - 1,
+ .pml_max_tag = (1ul << (PML_UCX_TAG_BITS - 1)) - 1
77
},
78
.ucp_context = NULL,
79
.ucp_worker = NULL
0 commit comments