Skip to content

Commit ccac7e5

Browse files
authored
Merge pull request #3157 from vspetrov/c_coll_allgather_usage_bugfix
Fixes the coll_allgather usage bug
2 parents 24e8639 + fe069c9 commit ccac7e5

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
@@ -881,7 +881,7 @@ static int ompi_osc_rdma_share_data (ompi_osc_rdma_module_t *module)
881881
if (ompi_comm_size (module->local_leaders) > 1) {
882882
ret = module->local_leaders->c_coll->coll_allgather (MPI_IN_PLACE, module->region_size, MPI_BYTE, module->node_comm_info,
883883
module->region_size, MPI_BYTE, module->local_leaders,
884-
module->local_leaders->c_coll->coll_gather_module);
884+
module->local_leaders->c_coll->coll_allgather_module);
885885
if (OMPI_SUCCESS != ret) {
886886
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_ERROR, "leader allgather failed with ompi error code %d", ret);
887887
break;

0 commit comments

Comments
 (0)