Skip to content

Commit e173486

Browse files
authored
Merge pull request #16 from zheng871026/huawei
Fix bug in discontig datatype
2 parents d002962 + 18e9d1c commit e173486

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/coll/ucx/coll_ucx_module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ static ucg_group_member_index_t mca_coll_ucx_get_global_member_idx(void *cb_grou
346346
ucg_group_member_index_t index)
347347
{
348348
ompi_communicator_t* comm = (ompi_communicator_t*)cb_group_obj;
349-
return (ucg_group_member_index_t)mcacoll_ucx_find_rank_in_comm_world(comm, (int)index);
349+
return (ucg_group_member_index_t)mca_coll_ucx_find_rank_in_comm_world(comm, (int)index);
350350
}
351351

352352
static void mca_coll_ucg_init_group_param(struct ompi_communicator_t *comm, ucg_group_params_t *args)
@@ -535,7 +535,7 @@ static int mca_coll_ucx_module_enable(mca_coll_base_module_t *module,
535535

536536
rc = mca_coll_ucg_create(ucx_module, comm);
537537
if (rc != OMPI_SUCCESS) {
538-
OBJ_REALEASE(module->base_data);
538+
OBJ_RELEASE(module->base_data);
539539
return rc;
540540
}
541541

0 commit comments

Comments
 (0)