1
1

pml/ucx: Fix the max tag and context id values

Signed-off-by: Nysal Jan K.A <jnysal@in.ibm.com>
Этот коммит содержится в:
Nysal Jan K.A 2019-07-03 14:33:01 +05:30
родитель f1b2a09675
Коммит fe4ef147f8

Просмотреть файл

@ -72,8 +72,8 @@ mca_pml_ucx_module_t ompi_pml_ucx = {
.pml_mrecv = mca_pml_ucx_mrecv,
.pml_dump = mca_pml_ucx_dump,
.pml_ft_event = NULL,
.pml_max_contextid = 1ul << (PML_UCX_CONTEXT_BITS),
.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
},
.ucp_context = NULL,
.ucp_worker = NULL