1
1

Don't allow some rank to don't count the collective if they have no data

to exchange.

This is the same logic as in 77eaa5c applied to ialltoallw.

Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
Этот коммит содержится в:
George Bosilca 2020-09-24 13:29:01 -04:00
родитель b532564643
Коммит 96fea22cdd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 09C926752C9F09B1

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

@ -67,7 +67,13 @@ static int nbc_alltoallw_init(const void* sendbuf, const int *sendcounts, const
span = lspan;
}
}
/**
* If this process has no data to send or receive it can bail out early,
* but it needs to increase the nonblocking tag to stay in sycn with the
* rest of the processses.
*/
if (OPAL_UNLIKELY(0 == span)) {
ompi_coll_base_nbc_reserve_tags(comm, 1);
return nbc_get_noop_request(persistent, request);
}
tmpbuf = malloc(span);