Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ompi selector was using the wrong algo for alltoallv, add the right one and use it
[simgrid.git] / src / smpi / colls / smpi_openmpi_selector.c
index 939b643..8109fba 100644 (file)
@@ -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_pair(sbuf, scounts, sdisps, sdtype, 
+    return smpi_coll_tuned_alltoallv_ompi_basic_linear(sbuf, scounts, sdisps, sdtype, 
                                                         rbuf, rcounts, rdisps,rdtype,
                                                         comm);
 }