X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..39e98567c557d81dd5011b8e2ae883d4674b0c9d:/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 c0f4c5433b..8a08fe8a8a 100644 --- a/src/smpi/colls/allgather/allgather-SMP-NTS.cpp +++ b/src/smpi/colls/allgather/allgather-SMP-NTS.cpp @@ -1,14 +1,13 @@ -/* Copyright (c) 2013-2021. The SimGrid Team. +/* Copyright (c) 2013-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "../colls_private.hpp" +#include "xbt/string.hpp" -namespace simgrid{ -namespace smpi{ - +namespace simgrid::smpi { int allgather__SMP_NTS(const void *sbuf, int scount, MPI_Datatype stype, void *rbuf, @@ -46,7 +45,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; } @@ -163,6 +162,4 @@ int allgather__SMP_NTS(const void *sbuf, int scount, return MPI_SUCCESS; } - -} -} +} // namespace simgrid::smpi