From d9e121bcb34f3cca05904dd7622a1968ffa77a37 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Tue, 17 Sep 2013 18:35:59 +0200 Subject: [PATCH] use tuned versions of the algos inside this one --- src/smpi/colls/allreduce-redbcast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.20.1