X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a340d551febe4876af2efe881b0d79a70ee0ace4..d5cc61332edae35867a41bb38ad9401faaab2716:/src/smpi/colls/allgather/allgather-3dmesh.cpp diff --git a/src/smpi/colls/allgather/allgather-3dmesh.cpp b/src/smpi/colls/allgather/allgather-3dmesh.cpp index 38ef2b05ea..8d99c071a8 100644 --- a/src/smpi/colls/allgather/allgather-3dmesh.cpp +++ b/src/smpi/colls/allgather/allgather-3dmesh.cpp @@ -101,7 +101,6 @@ int Coll_allgather_3dmesh::allgather(const void *send_buff, int send_count, 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, block_size, my_z_base; @@ -133,9 +132,8 @@ int Coll_allgather_3dmesh::allgather(const void *send_buff, int send_count, block_size = extent * send_count; - 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; @@ -206,7 +204,7 @@ int Coll_allgather_3dmesh::allgather(const void *send_buff, int send_count, } Request::waitall(Z - 1, req, MPI_STATUSES_IGNORE); - free(req); + delete[] req; return MPI_SUCCESS; }