Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename old alltoall selector function, which will probably be removed soon
authordegomme <degomme@debian.localdomain>
Fri, 7 Jun 2013 12:42:28 +0000 (14:42 +0200)
committerdegomme <degomme@debian.localdomain>
Fri, 7 Jun 2013 12:42:28 +0000 (14:42 +0200)
src/smpi/private.h
src/smpi/smpi_coll.c

index f67ad5e..642ddee 100644 (file)
@@ -239,7 +239,7 @@ void nary_tree_bcast(void *buf, int count, MPI_Datatype datatype, int root,
                      MPI_Comm comm, int arity);
 void nary_tree_barrier(MPI_Comm comm, int arity);
 
-int smpi_coll_tuned_alltoall_ompi(void *sendbuf, int sendcount,
+int smpi_coll_tuned_alltoall_ompi2(void *sendbuf, int sendcount,
                                       MPI_Datatype sendtype, void *recvbuf,
                                       int recvcount, MPI_Datatype recvtype,
                                       MPI_Comm comm);
index 29e3aa9..503c060 100644 (file)
@@ -39,9 +39,9 @@ COLL_ALLREDUCES(COLL_DESCRIPTION, COLL_COMMA),
 };
 
 s_mpi_coll_description_t mpi_coll_alltoall_description[] = {
-  {"ompi",
+  {"default",
    "Ompi alltoall default collective",
-   smpi_coll_tuned_alltoall_ompi},
+   smpi_coll_tuned_alltoall_ompi2},
 COLL_ALLTOALLS(COLL_DESCRIPTION, COLL_COMMA),
   {"bruck",
    "Alltoall Bruck (SG) collective",
@@ -311,7 +311,7 @@ void nary_tree_barrier(MPI_Comm comm, int arity)
   free_tree(tree);
 }
 
-int smpi_coll_tuned_alltoall_ompi(void *sendbuf, int sendcount,
+int smpi_coll_tuned_alltoall_ompi2(void *sendbuf, int sendcount,
                                    MPI_Datatype sendtype, void *recvbuf,
                                    int recvcount, MPI_Datatype recvtype,
                                    MPI_Comm comm)