Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / smpi / colls / allreduce / allreduce-rab2.cpp
index 62f8d97..81ab6b4 100644 (file)
@@ -7,6 +7,8 @@
 #include "../colls_private.h"
 //#include <star-reduction.c>
 
+namespace simgrid{
+namespace smpi{
 // this requires that count >= NP
 int Coll_allreduce_rab2::allreduce(void *sbuff, void *rbuff,
                                    int count, MPI_Datatype dtype,
@@ -82,3 +84,5 @@ int Coll_allreduce_rab2::allreduce(void *sbuff, void *rbuff,
 
   return MPI_SUCCESS;
 }
+}
+}