Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add tesh files to test all new collectives
[simgrid.git] / src / smpi / colls / allreduce-redbcast.c
index bc6f286..88d3561 100644 (file)
@@ -6,5 +6,5 @@ int smpi_coll_tuned_allreduce_redbcast(void *buf, void *buf2, int count,
 {
   smpi_mpi_reduce(buf, buf2, count, datatype, op, 0, comm);
   smpi_mpi_bcast(buf2, count, datatype, 0, comm);
-  return 0;
+  return MPI_SUCCESS;
 }