Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / smpi / colls / bcast / bcast-SMP-binary.cpp
index fa9cf45..6180787 100644 (file)
@@ -8,8 +8,9 @@
 
 
 int bcast_SMP_binary_segment_byte = 8192;
-
-int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count,
+namespace simgrid{
+namespace smpi{
+int Coll_bcast_SMP_binary::bcast(void *buf, int count,
                                      MPI_Datatype datatype, int root,
                                      MPI_Comm comm)
 {
@@ -33,7 +34,7 @@ int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count,
     host_num_core = comm->get_intra_comm()->size();
   }else{
     //implementation buggy in this case
-    return smpi_coll_tuned_bcast_mpich( buf , count, datatype,
+    return Coll_bcast_mpich::bcast( buf , count, datatype,
               root, comm);
   }
 
@@ -222,9 +223,12 @@ int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count,
   // when count is not divisible by block size, use default BCAST for the remainder
   if ((remainder != 0) && (count > segment)) {
     XBT_WARN("MPI_bcast_SMP_binary use default MPI_bcast.");     
-    smpi_mpi_bcast((char *) buf + (pipe_length * increment), remainder, datatype,
+    Colls::bcast((char *) buf + (pipe_length * increment), remainder, datatype,
               root, comm);
   }
 
   return 1;
 }
+
+}
+}