1
1

Merge pull request #1210 from artpol84/icbarrier_fix

Fix NBC iBarrier for inter-communicators.
Этот коммит содержится в:
Nathan Hjelm 2015-12-14 13:52:38 -08:00
родитель 4b3dac5933 fc17deca43
Коммит 9d659465b7

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

@ -177,7 +177,7 @@ int ompi_coll_libnbc_ibarrier_inter(struct ompi_communicator_t *comm, ompi_reque
}
/* inform remote peers that all local peers have entered the barrier */
for (int peer = 0 ; peer < rsize ; ++peer) {
for (int peer = 1; peer < rsize ; ++peer) {
res = NBC_Sched_send (0, true, 1, MPI_BYTE, peer, schedule, false);
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) {
NBC_Return_handle (handle);