Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
star-mpi's pairwise alltoall is only valid for power of 2 cases, add openmpi's one...
[simgrid.git] / src / smpi / colls / smpi_openmpi_selector.c
index 819242f..e092bdd 100644 (file)
@@ -81,7 +81,7 @@ int smpi_coll_tuned_alltoall_ompi( void *sbuf, int scount,
                                                            comm);
     }
 
-    return smpi_coll_tuned_alltoall_pair (sbuf, scount, sdtype, 
+    return smpi_coll_tuned_alltoall_ompi_pairwise (sbuf, scount, sdtype, 
                                                     rbuf, rcount, rdtype,
                                                     comm);
 }
@@ -94,7 +94,7 @@ int smpi_coll_tuned_alltoallv_ompi(void *sbuf, int *scounts, int *sdisps,
                                               )
 {
     /* For starters, just keep the original algorithm. */
-    return smpi_coll_tuned_alltoallv_bruck(sbuf, scounts, sdisps, sdtype, 
+    return smpi_coll_tuned_alltoallv_ompi_basic_linear(sbuf, scounts, sdisps, sdtype, 
                                                         rbuf, rcounts, rdisps,rdtype,
                                                         comm);
 }