Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #168 from simgrid/smpi_huge_pages
[simgrid.git] / src / smpi / colls / reduce / reduce-scatter-gather.cpp
index b8ac142..b5e2fbe 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
@@ -10,7 +10,8 @@
   reduce
   Author: MPICH
  */
-
+namespace simgrid{
+namespace smpi{
 int Coll_reduce_scatter_gather::reduce(void *sendbuf, void *recvbuf,
                                           int count, MPI_Datatype datatype,
                                           MPI_Op op, int root, MPI_Comm comm)
@@ -410,3 +411,5 @@ int Coll_reduce_scatter_gather::reduce(void *sendbuf, void *recvbuf,
 
   return 0;
 }
+}
+}