Skip to content

Commit

Permalink
Fix typo calling allreduce with the allgather module.
Browse files Browse the repository at this point in the history
That was causing CUDA collective to crash.
  • Loading branch information
sjeaugey committed Aug 18, 2016
1 parent 394e23d commit 61e900e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ompi/communicator/comm.c
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ int ompi_comm_split_type (ompi_communicator_t *comm, int split_type, int key,
tmp[3] = -key;

rc = comm->c_coll.coll_allreduce (MPI_IN_PLACE, &tmp, 4, MPI_INT, MPI_MAX, comm,
comm->c_coll.coll_allgather_module);
comm->c_coll.coll_allreduce_module);
if (OPAL_UNLIKELY(OMPI_SUCCESS != rc)) {
return rc;
}
Expand Down

0 comments on commit 61e900e

Please sign in to comment.