X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/763ea0fa6120d18f99e2e5e8164a4cf5821c547c..f35db13138682b1be530a509d1eeadeafff84ca7:/src/smpi/colls/bcast/bcast-NTSL.cpp diff --git a/src/smpi/colls/bcast/bcast-NTSL.cpp b/src/smpi/colls/bcast/bcast-NTSL.cpp index 587e8da7d7..c318f5d025 100644 --- a/src/smpi/colls/bcast/bcast-NTSL.cpp +++ b/src/smpi/colls/bcast/bcast-NTSL.cpp @@ -11,6 +11,8 @@ static int bcast_NTSL_segment_size_in_byte = 8192; /* Non-topology-specific pipelined linear-bcast function 0->1, 1->2 ,2->3, ....., ->last node : in a pipeline fashion */ +namespace simgrid{ +namespace smpi{ int Coll_bcast_NTSL::bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm) { @@ -130,3 +132,6 @@ int Coll_bcast_NTSL::bcast(void *buf, int count, MPI_Datatype datatype, return MPI_SUCCESS; } + +} +}