Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanup, and allow an external process to start a MPI request.
[simgrid.git] / src / smpi / colls / reduce / reduce-binomial.cpp
index 05105b2..e7dfd60 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2014. The SimGrid Team.
+/* Copyright (c) 2013-2017. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -7,8 +7,9 @@
 #include "../colls_private.h"
 
 //#include <star-reduction.c>
-
-int smpi_coll_tuned_reduce_binomial(void *sendbuf, void *recvbuf, int count,
+namespace simgrid{
+namespace smpi{
+int Coll_reduce_binomial::reduce(void *sendbuf, void *recvbuf, int count,
                                     MPI_Datatype datatype, MPI_Op op, int root,
                                     MPI_Comm comm)
 {
@@ -91,3 +92,5 @@ int smpi_coll_tuned_reduce_binomial(void *sendbuf, void *recvbuf, int count,
 
   return 0;
 }
+}
+}