X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8f29d9411160cd90ee8d2541c741daafb3f396c6..8dd3206354d72d10fed1f3df1cf834573d9c0d9d:/src/smpi/colls/bcast/bcast-flattree-pipeline.cpp diff --git a/src/smpi/colls/bcast/bcast-flattree-pipeline.cpp b/src/smpi/colls/bcast/bcast-flattree-pipeline.cpp index 1d18349dba..3f77cbf44a 100644 --- a/src/smpi/colls/bcast/bcast-flattree-pipeline.cpp +++ b/src/smpi/colls/bcast/bcast-flattree-pipeline.cpp @@ -24,7 +24,7 @@ int bcast__flattree_pipeline(void *buff, int count, int pipe_length = count / segment; int increment = segment * extent; if (pipe_length==0) { - XBT_WARN("MPI_bcast_flattree_pipeline use default MPI_bcast_flattree."); + XBT_INFO("MPI_bcast_flattree_pipeline: pipe_length=0, use default MPI_bcast_flattree."); return bcast__flattree(buff, count, data_type, root, comm); } rank = comm->rank();