Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill all horizontal tabs
[simgrid.git] / src / smpi / colls / bcast / bcast-ompi-pipeline.cpp
index 7f7893b..0e328ab 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
@@ -9,8 +9,9 @@
 
 #define MAXTREEFANOUT 32
 
-
-int smpi_coll_tuned_bcast_ompi_pipeline( void* buffer,
+namespace simgrid{
+namespace smpi{
+int Coll_bcast_ompi_pipeline::bcast( void* buffer,
                                       int original_count, 
                                       MPI_Datatype datatype, 
                                       int root,
@@ -209,3 +210,6 @@ int smpi_coll_tuned_bcast_ompi_pipeline( void* buffer,
 
     return (MPI_SUCCESS);
 }
+
+}
+}