Skip to content

Commit 1e2b337

Browse files
authored
Merge pull request #3160 from vspetrov/v2.0.x_c_coll_allgather_usage_bugfix
Fixes the coll_allgather usage bug
2 parents 6cc9b7e + 2beacdc commit 1e2b337

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
@@ -856,7 +856,7 @@ static int ompi_osc_rdma_share_data (ompi_osc_rdma_module_t *module)
856856
if (ompi_comm_size (module->local_leaders) > 1) {
857857
ret = module->local_leaders->c_coll.coll_allgather (MPI_IN_PLACE, module->region_size, MPI_BYTE, module->node_comm_info,
858858
module->region_size, MPI_BYTE, module->local_leaders,
859-
module->local_leaders->c_coll.coll_gather_module);
859+
module->local_leaders->c_coll.coll_allgather_module);
860860
if (OMPI_SUCCESS != ret) {
861861
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_ERROR, "leader allgather failed with ompi error code %d", ret);
862862
break;

0 commit comments

Comments
 (0)