Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
downgrade message to info level, it's usually not a big issue to have some handles...
authorAugustin Degomme <adegomme@gmail.com>
Wed, 10 Mar 2021 10:11:46 +0000 (11:11 +0100)
committerAugustin Degomme <adegomme@gmail.com>
Sun, 14 Mar 2021 22:39:01 +0000 (23:39 +0100)
src/smpi/internals/smpi_global.cpp

index 7764fa5..2b5e912 100644 (file)
@@ -627,7 +627,7 @@ void SMPI_finalize()
 
   if (simgrid::smpi::F2C::lookup() != nullptr &&
       simgrid::smpi::F2C::lookup()->size() > simgrid::smpi::F2C::get_num_default_handles()) {
-    XBT_WARN("Probable memory leaks in your code: SMPI detected %zu unfreed MPI handles : "
+    XBT_INFO("Probable memory leaks in your code: SMPI detected %zu unfreed MPI handles : "
              "display types and addresses (n max) with --cfg=smpi/list-leaks:n.\n"
              "Running smpirun with -wrapper \"valgrind --leak-check=full\" can provide more information",
              simgrid::smpi::F2C::lookup()->size() - simgrid::smpi::F2C::get_num_default_handles());