Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
actually use starmpi collectives for allreduce
authorAugustin Degomme <degomme@idpann.imag.fr>
Wed, 3 Apr 2013 14:24:43 +0000 (16:24 +0200)
committerAugustin Degomme <degomme@idpann.imag.fr>
Wed, 3 Apr 2013 14:40:35 +0000 (16:40 +0200)
src/smpi/smpi_pmpi.c

index 4896cd9..bf9551c 100644 (file)
@@ -1829,7 +1829,7 @@ int PMPI_Allreduce(void *sendbuf, void *recvbuf, int count,
   } else if (op == MPI_OP_NULL) {
     retval = MPI_ERR_OP;
   } else {
   } 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
     retval = MPI_SUCCESS;
   }
 #ifdef HAVE_TRACING