X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e1fa53a0d0ae78cebae28364e6802aa1db1cba3..8dd3206354d72d10fed1f3df1cf834573d9c0d9d:/src/smpi/colls/allgather/allgather-SMP-NTS.cpp diff --git a/src/smpi/colls/allgather/allgather-SMP-NTS.cpp b/src/smpi/colls/allgather/allgather-SMP-NTS.cpp index a185059b5d..de4a4e27b2 100644 --- a/src/smpi/colls/allgather/allgather-SMP-NTS.cpp +++ b/src/smpi/colls/allgather/allgather-SMP-NTS.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2020. The SimGrid Team. +/* Copyright (c) 2013-2021. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -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; }