X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..8dd3206354d72d10fed1f3df1cf834573d9c0d9d:/src/smpi/colls/allgather/allgather-rhv.cpp diff --git a/src/smpi/colls/allgather/allgather-rhv.cpp b/src/smpi/colls/allgather/allgather-rhv.cpp index 3b9b391a77..625dc79f24 100644 --- a/src/smpi/colls/allgather/allgather-rhv.cpp +++ b/src/smpi/colls/allgather/allgather-rhv.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 @@ -45,7 +45,7 @@ allgather__rhv(const void *sbuf, int send_count, recv_chunk = r_extent * recv_count; if (send_chunk != recv_chunk) { - XBT_WARN("MPI_allgather_rhv use default MPI_allgather."); + XBT_INFO("MPI_allgather_rhv: send_chunk != recv_chunk, use default MPI_allgather."); allgather__default(sbuf, send_count, send_type, rbuf, recv_count, recv_type, comm); return MPI_SUCCESS;