Skip to content

Commit 8a624ab

Browse files
authored
Merge pull request #7523 from mkurnosov/fix-bcast-scatterallgather
Fix Bcast scatter_allgather
2 parents 36e5863 + 66b6b8d commit 8a624ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/coll/base/coll_base_bcast.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ int ompi_coll_base_bcast_intra_scatter_allgather(
903903
} else if ((vremote < vrank) && (vremote < tree_root + nprocs_alldata)
904904
&& (vrank >= tree_root + nprocs_alldata)) {
905905
err = MCA_PML_CALL(recv((char *)buf + (ptrdiff_t)offset * extent,
906-
count - offset, datatype, remote,
906+
count, datatype, remote,
907907
MCA_COLL_BASE_TAG_BCAST,
908908
comm, &status));
909909
if (MPI_SUCCESS != err) { goto cleanup_and_return; }

0 commit comments

Comments
 (0)