1
1

Merge pull request #8041 from brminich/topic/shmem_scoll_fix

SHMEM/SCOLL: Fix inplace reductions
Этот коммит содержится в:
Yossi Itigin 2020-09-23 13:56:10 +03:00 коммит произвёл GitHub
родитель 21c9c666ab dfe20e0472
Коммит b532564643
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -226,11 +226,11 @@ int mca_scoll_mpi_reduce(struct oshmem_group_t *group,
MPI_COLL_VERBOSE(20,"RUNNING MPI REDUCE");
void *sbuf, *rbuf;
mpi_module = (mca_scoll_mpi_module_t *) group->g_scoll.scoll_reduce_module;
sbuf = (void *) source;
rbuf = target;
dtype = shmem_dtype_to_ompi_dtype(op);
h_op = shmem_op_to_ompi_op(op->op);
count = nlong/op->dt_size;
rbuf = target;
sbuf = (source == target) ? MPI_IN_PLACE : (void*)source;
/* Do nothing on zero-length request */
if (OPAL_UNLIKELY(!nlong)) {