From 7acbcaa1ca3a7a70fa4d9f7c72f2f46dae6b4820 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 3 Apr 2013 16:24:43 +0200 Subject: [PATCH 1/1] actually use starmpi collectives for allreduce --- src/smpi/smpi_pmpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/smpi_pmpi.c b/src/smpi/smpi_pmpi.c index 4896cd97aa..bf9551c1a8 100644 --- a/src/smpi/smpi_pmpi.c +++ b/src/smpi/smpi_pmpi.c @@ -1829,7 +1829,7 @@ int PMPI_Allreduce(void *sendbuf, void *recvbuf, int count, } else if (op == MPI_OP_NULL) { retval = MPI_ERR_OP; } else { - smpi_mpi_allreduce(sendbuf, recvbuf, count, datatype, op, comm); + mpi_coll_allreduce_fun(sendbuf, recvbuf, count, datatype, op, comm); retval = MPI_SUCCESS; } #ifdef HAVE_TRACING -- 2.20.1