File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ int mca_pml_ucx_open(void)
128128 return OMPI_ERROR ;
129129 }
130130
131+ params .field_mask = UCP_PARAM_FIELD_FEATURES |
132+ UCP_PARAM_FIELD_REQUEST_SIZE |
133+ UCP_PARAM_FIELD_REQUEST_INIT |
134+ UCP_PARAM_FIELD_REQUEST_CLEANUP |
135+ UCP_PARAM_FIELD_TAG_SENDER_MASK ;
131136 params .features = UCP_FEATURE_TAG ;
132137 params .request_size = sizeof (ompi_request_t );
133138 params .request_init = mca_pml_ucx_request_init ;
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ static int mca_spml_ucx_component_open(void)
118118 }
119119
120120 memset (& params , 0 , sizeof (params ));
121- params .features = UCP_FEATURE_RMA | UCP_FEATURE_AMO32 | UCP_FEATURE_AMO64 ;
122-
121+ params .field_mask = UCP_PARAM_FIELD_FEATURES ;
122+ params . features = UCP_FEATURE_RMA | UCP_FEATURE_AMO32 | UCP_FEATURE_AMO64 ;
123123 err = ucp_init (& params , ucp_config , & mca_spml_ucx .ucp_context );
124124 ucp_config_release (ucp_config );
125125 if (UCS_OK != err ) {
You can’t perform that action at this time.
0 commit comments