X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88f49b34e91fe95b712d1545ae71a0896f5466c1..72d32c4e88a57f4786f62fec48a1bfa454adbff9:/src/smpi/colls/allgatherv/allgatherv-ompi-neighborexchange.cpp diff --git a/src/smpi/colls/allgatherv/allgatherv-ompi-neighborexchange.cpp b/src/smpi/colls/allgatherv/allgatherv-ompi-neighborexchange.cpp index bf7b05175d..56e3a1f511 100644 --- a/src/smpi/colls/allgatherv/allgatherv-ompi-neighborexchange.cpp +++ b/src/smpi/colls/allgatherv/allgatherv-ompi-neighborexchange.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2020. The SimGrid Team. +/* Copyright (c) 2013-2022. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -65,8 +65,7 @@ #include "../colls_private.hpp" -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { int allgatherv__ompi_neighborexchange(const void *sbuf, int scount, @@ -88,7 +87,7 @@ allgatherv__ompi_neighborexchange(const void *sbuf, int scount, rank = comm->rank(); if (size % 2) { - XBT_DEBUG("allgatherv__ompi_neighborexchange WARNING: odd size %d, switching to ring algorithm", + XBT_INFO("allgatherv__ompi_neighborexchange: odd size %d, switching to ring algorithm", size); return allgatherv__ring(sbuf, scount, sdtype, rbuf, rcounts, @@ -213,10 +212,9 @@ allgatherv__ompi_neighborexchange(const void *sbuf, int scount, return MPI_SUCCESS; err_hndl: - XBT_DEBUG( "%s:%4d\tError occurred %d, rank %2d", + XBT_WARN( "%s:%4d\tError occurred %d, rank %2d", __FILE__, line, err, rank); return err; } -} -} +} // namespace simgrid::smpi