1
1

Keep the non-blocking collective tags globally in sync.

Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
Этот коммит содержится в:
George Bosilca 2020-09-15 16:05:23 -04:00
родитель c98e387a53
Коммит 77eaa5c8b8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 09C926752C9F09B1

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

@ -74,13 +74,20 @@ static int nbc_alltoallv_init(const void* sendbuf, const int *sendcounts, const
}
}
span = opal_datatype_span(&recvtype->super, count, &gap);
/**
* 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);
if (OPAL_UNLIKELY(NULL == tmpbuf)) {
return OMPI_ERR_OUT_OF_RESOURCE;
}
sendcounts = recvcounts;
sdispls = rdispls;
} else {