X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/271068c7d949ed959313b055466e13539485bc2c..f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387:/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 afaabc34a3..a185059b5d 100644 --- a/src/smpi/colls/allgather/allgather-SMP-NTS.cpp +++ b/src/smpi/colls/allgather/allgather-SMP-NTS.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -85,8 +85,8 @@ int allgather__SMP_NTS(const void *sbuf, int scount, // root of each SMP if (intra_rank == 0) { - MPI_Request* rrequest_array = new MPI_Request[inter_comm_size - 1]; - MPI_Request* srequest_array = new MPI_Request[inter_comm_size - 1]; + auto* rrequest_array = new MPI_Request[inter_comm_size - 1]; + auto* srequest_array = new MPI_Request[inter_comm_size - 1]; src = ((inter_rank - 1 + inter_comm_size) % inter_comm_size) * num_core; dst = ((inter_rank + 1) % inter_comm_size) * num_core;