Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
turn unimportant warnings into info in colls and improve messages
[simgrid.git] / src / smpi / colls / allgather / allgather-SMP-NTS.cpp
index c0f4c54..de4a4e2 100644 (file)
@@ -46,7 +46,7 @@ int allgather__SMP_NTS(const void *sbuf, int scount,
 
   /* for too small number of processes, use default implementation */
   if (comm_size <= num_core) {
-    XBT_WARN("MPI_allgather_SMP_NTS use default MPI_allgather.");
+    XBT_INFO("MPI_allgather_SMP_NTS: comm_size <= num_core, use default MPI_allgather.");
     allgather__default(sbuf, scount, stype, rbuf, rcount, rtype, comm);
     return MPI_SUCCESS;
   }