From: Augustin Degomme Date: Tue, 17 Sep 2013 16:35:59 +0000 (+0200) Subject: use tuned versions of the algos inside this one X-Git-Tag: v3_9_90~117 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d9e121bcb34f3cca05904dd7622a1968ffa77a37?ds=sidebyside use tuned versions of the algos inside this one --- diff --git a/src/smpi/colls/allreduce-redbcast.c b/src/smpi/colls/allreduce-redbcast.c index 69c552dfe2..ca9b8fcd37 100644 --- a/src/smpi/colls/allreduce-redbcast.c +++ b/src/smpi/colls/allreduce-redbcast.c @@ -4,7 +4,7 @@ int smpi_coll_tuned_allreduce_redbcast(void *buf, void *buf2, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) { - smpi_mpi_reduce(buf, buf2, count, datatype, op, 0, comm); - smpi_mpi_bcast(buf2, count, datatype, 0, comm); + mpi_coll_reduce_fun(buf, buf2, count, datatype, op, 0, comm); + mpi_coll_bcast_fun(buf2, count, datatype, 0, comm); return MPI_SUCCESS; }