X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f734ec7475682eb90323e804cbcfddd7e4523992..fbcf6ab31cae1988be858f9f894dafe529c575d7:/src/smpi/colls/allgather/allgather-2dmesh.cpp diff --git a/src/smpi/colls/allgather/allgather-2dmesh.cpp b/src/smpi/colls/allgather/allgather-2dmesh.cpp index d1362f6479..cb7ed513fc 100644 --- a/src/smpi/colls/allgather/allgather-2dmesh.cpp +++ b/src/smpi/colls/allgather/allgather-2dmesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. +/* Copyright (c) 2013-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -69,7 +69,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. static int is_2dmesh(int num, int *i, int *j) { int x, max = num / 2; - x = sqrt(num); + x = sqrt(double(num)); while (x <= max) { if ((num % x) == 0) { @@ -111,11 +111,10 @@ namespace smpi{ int -Coll_allgather_2dmesh::allgather(void *send_buff, int send_count, MPI_Datatype +Coll_allgather_2dmesh::allgather(const void *send_buff, int send_count, MPI_Datatype send_type, void *recv_buff, int recv_count, MPI_Datatype recv_type, MPI_Comm comm) { - MPI_Request *req, *req_ptr; MPI_Aint extent; int i, src, dst, rank, num_procs; @@ -140,9 +139,8 @@ Coll_allgather_2dmesh::allgather(void *send_buff, int send_count, MPI_Datatype if (Y > X) num_reqs = Y; - req = (MPI_Request *) xbt_malloc(num_reqs * sizeof(MPI_Request)); - - req_ptr = req; + MPI_Request* req = new MPI_Request[num_reqs]; + MPI_Request* req_ptr = req; // do local allgather/local copy recv_offset = rank * block_size; @@ -193,7 +191,7 @@ Coll_allgather_2dmesh::allgather(void *send_buff, int send_count, MPI_Datatype Request::waitall(X - 1, req, MPI_STATUSES_IGNORE); - free(req); + delete[] req; return MPI_SUCCESS; }