Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
We need this order of parameters, as the user may want to override the default privat...
[simgrid.git] / src / smpi / colls / alltoall / alltoall-ring-one-barrier.cpp
index 7f168b9daba05dd7788b50c1f2f737c13b3cf7a9..8ebeab337d1a0cb61f1f3dac6b219269240f0282 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
@@ -25,6 +25,8 @@
  * Auther: Ahmad Faraj
 
  ****************************************************************************/
+namespace simgrid{
+namespace smpi{
 int
 Coll_alltoall_ring_one_barrier::alltoall(void *send_buff, int send_count,
                                           MPI_Datatype send_type,
@@ -58,3 +60,5 @@ Coll_alltoall_ring_one_barrier::alltoall(void *send_buff, int send_count,
   }
   return MPI_SUCCESS;
 }
+}
+}