Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / smpi / colls / bcast / bcast-arrival-pattern-aware.cpp
index 9138d92..564644b 100644 (file)
@@ -11,6 +11,8 @@ static int bcast_NTSL_segment_size_in_byte = 8192;
 #define HEADER_SIZE 1024
 #define MAX_NODE 1024
 
+namespace simgrid{
+namespace smpi{
 /* Non-topology-specific pipelined linear-bcast function */
 int Coll_bcast_arrival_pattern_aware::bcast(void *buf, int count,
                                                 MPI_Datatype datatype, int root,
@@ -362,3 +364,6 @@ int Coll_bcast_arrival_pattern_aware::bcast(void *buf, int count,
 
   return MPI_SUCCESS;
 }
+
+}
+}