1
1

Merge pull request #7574 from mkurnosov/bcast-scatter-allgather-fix

v4.0.x: Fix Bcast scatter_allgather (issue #7410)
Этот коммит содержится в:
Geoff Paulsen 2020-03-30 14:05:53 -05:00 коммит произвёл GitHub
родитель 34c4f934e1 d7857d000a
Коммит 978f340189
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -876,7 +876,7 @@ int ompi_coll_base_bcast_intra_scatter_allgather(
} else if ((vremote < vrank) && (vremote < tree_root + nprocs_alldata)
&& (vrank >= tree_root + nprocs_alldata)) {
err = MCA_PML_CALL(recv((char *)buf + (ptrdiff_t)offset * extent,
count - offset, datatype, remote,
count, datatype, remote,
MCA_COLL_BASE_TAG_BCAST,
comm, &status));
if (MPI_SUCCESS != err) { goto cleanup_and_return; }