Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
turn unimportant warnings into info in colls and improve messages
[simgrid.git] / src / smpi / colls / bcast / bcast-flattree-pipeline.cpp
index 48571dd..3f77cbf 100644 (file)
@@ -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
@@ -24,14 +24,14 @@ int bcast__flattree_pipeline(void *buff, int count,
   int pipe_length = count / segment;
   int increment = segment * extent;
   if (pipe_length==0) {
-    XBT_WARN("MPI_bcast_flattree_pipeline use default MPI_bcast_flattree.");
+    XBT_INFO("MPI_bcast_flattree_pipeline: pipe_length=0, use default MPI_bcast_flattree.");
     return bcast__flattree(buff, count, data_type, root, comm);
   }
   rank = comm->rank();
   num_procs = comm->size();
 
-  MPI_Request* request_array = new MPI_Request[pipe_length];
-  MPI_Status* status_array   = new MPI_Status[pipe_length];
+  auto* request_array = new MPI_Request[pipe_length];
+  auto* status_array  = new MPI_Status[pipe_length];
 
   if (rank != root) {
     for (i = 0; i < pipe_length; i++) {