X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a3848e5ea6b2305d6059c89705edaccbec356455..54f3e8ef2b6a97e765f395cfdead327fb0989c5f:/src/smpi/colls/alltoall-ompi-pairwise.c diff --git a/src/smpi/colls/alltoall-ompi-pairwise.c b/src/smpi/colls/alltoall-ompi-pairwise.c index e23944f1f6..8daee00055 100644 --- a/src/smpi/colls/alltoall-ompi-pairwise.c +++ b/src/smpi/colls/alltoall-ompi-pairwise.c @@ -17,7 +17,6 @@ */ #include "colls_private.h" -#define MCA_COLL_BASE_TAG_ALLTOALL 101 int smpi_coll_tuned_alltoall_ompi_pairwise(void *sbuf, int scount, MPI_Datatype sdtype, @@ -53,9 +52,9 @@ int smpi_coll_tuned_alltoall_ompi_pairwise(void *sbuf, int scount, /* send and receive */ smpi_mpi_sendrecv( tmpsend, scount, sdtype, sendto, - MCA_COLL_BASE_TAG_ALLTOALL, + COLL_TAG_ALLTOALL, tmprecv, rcount, rdtype, recvfrom, - MCA_COLL_BASE_TAG_ALLTOALL, + COLL_TAG_ALLTOALL, comm, MPI_STATUS_IGNORE); }