Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use tuned versions of the algos inside this one
[simgrid.git] / src / smpi / colls / alltoall-ompi-pairwise.c
index e23944f..8daee00 100644 (file)
@@ -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);
     }