Skip to content

Commit 9376b03

Browse files
committed
Fix the basic barrier.
The log basic barrier was completely broken. The rank 0 gets the hibit set to 0, so it always returned an error.
1 parent c0fc0d1 commit 9376b03

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

ompi/mca/coll/basic/coll_basic_barrier.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ mca_coll_basic_barrier_intra_log(struct ompi_communicator_t *comm,
5555

5656
dim = comm->c_cube_dim;
5757
hibit = opal_hibit(rank, dim);
58-
if (hibit < 0) {
59-
return MPI_ERR_OTHER;
60-
}
6158
--dim;
6259

6360
/* Receive from children. */

0 commit comments

Comments
 (0)