X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e195a28b546de45d49c8ab08f18da1da136a2454..ae0e5607956f1b19a4605d297bc6d51e5e18f845:/src/smpi/colls/bcast/bcast-SMP-linear.cpp diff --git a/src/smpi/colls/bcast/bcast-SMP-linear.cpp b/src/smpi/colls/bcast/bcast-SMP-linear.cpp index 29d24a1947..8c241b94f2 100644 --- a/src/smpi/colls/bcast/bcast-SMP-linear.cpp +++ b/src/smpi/colls/bcast/bcast-SMP-linear.cpp @@ -53,7 +53,7 @@ int Coll_bcast_SMP_linear::bcast(void *buf, int count, // call native when MPI communication size is too small if (size <= num_core) { - XBT_WARN("MPI_bcast_SMP_linear use default MPI_bcast."); + XBT_WARN("MPI_bcast_SMP_linear use default MPI_bcast."); Coll_bcast_default::bcast(buf, count, datatype, root, comm); return MPI_SUCCESS; } @@ -170,7 +170,7 @@ int Coll_bcast_SMP_linear::bcast(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_linear use default MPI_bcast."); + XBT_WARN("MPI_bcast_SMP_linear use default MPI_bcast."); Colls::bcast((char *) buf + (pipe_length * increment), remainder, datatype, root, comm); }