X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..HEAD:/src/smpi/colls/smpi_nbc_impl.cpp diff --git a/src/smpi/colls/smpi_nbc_impl.cpp b/src/smpi/colls/smpi_nbc_impl.cpp index b475317488..0b6788ac74 100644 --- a/src/smpi/colls/smpi_nbc_impl.cpp +++ b/src/smpi/colls/smpi_nbc_impl.cpp @@ -1,6 +1,6 @@ /* Asynchronous parts of the basic collective algorithms, meant to be used both for the naive default implementation, but also for non blocking collectives */ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,8 +8,7 @@ #include "colls_private.hpp" #include "src/smpi/include/smpi_actor.hpp" -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { int colls::ibarrier(MPI_Comm comm, MPI_Request* request, int external) { @@ -17,25 +16,20 @@ int colls::ibarrier(MPI_Comm comm, MPI_Request* request, int external) int rank = comm->rank(); int system_tag=COLL_TAG_BARRIER-external; (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); + std::vector requests; + if (rank > 0) { - auto* requests = new MPI_Request[2]; - requests[0] = Request::isend (nullptr, 0, MPI_BYTE, 0, - system_tag, - comm); - requests[1] = Request::irecv (nullptr, 0, MPI_BYTE, 0, - system_tag, - comm); - (*request)->set_nbc_requests(requests, 2); + requests.push_back(Request::isend_init (nullptr, 0, MPI_BYTE, 0, system_tag, comm)); + requests.push_back(Request::irecv_init(nullptr, 0, MPI_BYTE, 0, system_tag, comm)); } else { - auto* requests = new MPI_Request[(size - 1) * 2]; for (int i = 1; i < 2 * size - 1; i += 2) { - requests[i - 1] = Request::irecv(nullptr, 0, MPI_BYTE, MPI_ANY_SOURCE, system_tag, comm); - requests[i] = Request::isend(nullptr, 0, MPI_BYTE, (i + 1) / 2, system_tag, comm); + requests.push_back(Request::irecv_init(nullptr, 0, MPI_BYTE, MPI_ANY_SOURCE, system_tag, comm)); + requests.push_back(Request::isend_init(nullptr, 0, MPI_BYTE, (i + 1) / 2, system_tag, comm)); } - (*request)->set_nbc_requests(requests, 2*(size-1)); } + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -45,29 +39,20 @@ int colls::ibcast(void* buf, int count, MPI_Datatype datatype, int root, MPI_Com int size = comm->size(); int rank = comm->rank(); int system_tag=COLL_TAG_BCAST-external; + std::vector requests; (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); if (rank != root) { - auto* requests = new MPI_Request[1]; - requests[0] = Request::irecv (buf, count, datatype, root, - system_tag, - comm); - (*request)->set_nbc_requests(requests, 1); + requests.push_back(Request::irecv_init(buf, count, datatype, root, system_tag, comm)); } else { - auto* requests = new MPI_Request[size - 1]; - int n = 0; for (int i = 0; i < size; i++) { if(i!=root){ - requests[n] = Request::isend(buf, count, datatype, i, - system_tag, - comm - ); - n++; + requests.push_back(Request::isend_init(buf, count, datatype, i, system_tag, comm)); } } - (*request)->set_nbc_requests(requests, size-1); } + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -78,30 +63,26 @@ int colls::iallgather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, const int system_tag = COLL_TAG_ALLGATHER-external; MPI_Aint lb = 0; MPI_Aint recvext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); // FIXME: check for errors recvtype->extent(&lb, &recvext); // Local copy from self Datatype::copy(sendbuf, sendcount, sendtype, static_cast(recvbuf) + rank * recvcount * recvext, recvcount, recvtype); // Send/Recv buffers to/from others; - auto* requests = new MPI_Request[2 * (size - 1)]; - int index = 0; for (int other = 0; other < size; other++) { if(other != rank) { - requests[index] = Request::isend_init(sendbuf, sendcount, sendtype, other, system_tag,comm); - index++; - requests[index] = Request::irecv_init(static_cast(recvbuf) + other * recvcount * recvext, recvcount, recvtype, - other, system_tag, comm); - index++; + requests.push_back(Request::isend_init(sendbuf, sendcount, sendtype, other, system_tag, comm)); + requests.push_back(Request::irecv_init(static_cast(recvbuf) + other * recvcount * recvext, recvcount, + recvtype, other, system_tag, comm)); } } - Request::startall(2 * (size - 1), requests); - (*request)->set_nbc_requests(requests, 2 * (size - 1)); + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -111,16 +92,15 @@ int colls::iscatter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, v const int system_tag = COLL_TAG_SCATTER-external; MPI_Aint lb = 0; MPI_Aint sendext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); if(rank != root) { - auto* requests = new MPI_Request[1]; // Recv buffer from root - requests[0] = Request::irecv(recvbuf, recvcount, recvtype, root, system_tag, comm); - (*request)->set_nbc_requests(requests, 1); + requests.push_back(Request::irecv_init(recvbuf, recvcount, recvtype, root, system_tag, comm)); } else { sendtype->extent(&lb, &sendext); // Local copy from root @@ -129,19 +109,14 @@ int colls::iscatter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, v sendcount, sendtype, recvbuf, recvcount, recvtype); } // Send buffers to receivers - auto* requests = new MPI_Request[size - 1]; - int index = 0; for(int dst = 0; dst < size; dst++) { if(dst != root) { - requests[index] = Request::isend_init(static_cast(sendbuf) + dst * sendcount * sendext, sendcount, sendtype, - dst, system_tag, comm); - index++; + requests.push_back(Request::isend_init(static_cast(sendbuf) + dst * sendcount * sendext, sendcount, sendtype, + dst, system_tag, comm)); } } - // Wait for completion of isend's. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); } + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -151,31 +126,26 @@ int colls::iallgatherv(const void* sendbuf, int sendcount, MPI_Datatype sendtype const int system_tag = COLL_TAG_ALLGATHERV-external; MPI_Aint lb = 0; MPI_Aint recvext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); recvtype->extent(&lb, &recvext); // Local copy from self Datatype::copy(sendbuf, sendcount, sendtype, static_cast(recvbuf) + displs[rank] * recvext,recvcounts[rank], recvtype); // Send buffers to others; - auto* requests = new MPI_Request[2 * (size - 1)]; - int index = 0; for (int other = 0; other < size; other++) { if(other != rank) { - requests[index] = - Request::isend_init(sendbuf, sendcount, sendtype, other, system_tag, comm); - index++; - requests[index] = Request::irecv_init(static_cast(recvbuf) + displs[other] * recvext, recvcounts[other], - recvtype, other, system_tag, comm); - index++; + requests.push_back(Request::isend_init(sendbuf, sendcount, sendtype, other, system_tag, comm)); + requests.push_back(Request::irecv_init(static_cast(recvbuf) + displs[other] * recvext, recvcounts[other], + recvtype, other, system_tag, comm)); } } // Wait for completion of all comms. - Request::startall(2 * (size - 1), requests); - (*request)->set_nbc_requests(requests, 2 * (size - 1)); + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -186,12 +156,13 @@ int colls::ialltoall(const void* sendbuf, int sendcount, MPI_Datatype sendtype, MPI_Aint lb = 0; MPI_Aint sendext = 0; MPI_Aint recvext = 0; + std::vector requests; /* Initialize. */ int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); sendtype->extent(&lb, &sendext); recvtype->extent(&lb, &recvext); /* simple optimization */ @@ -199,13 +170,10 @@ int colls::ialltoall(const void* sendbuf, int sendcount, MPI_Datatype sendtype, static_cast(recvbuf) + rank * recvcount * recvext, recvcount, recvtype); if (err == MPI_SUCCESS && size > 1) { /* Initiate all send/recv to/from others. */ - auto* requests = new MPI_Request[2 * (size - 1)]; /* Post all receives first -- a simple optimization */ - int count = 0; for (int i = (rank + 1) % size; i != rank; i = (i + 1) % size) { - requests[count] = Request::irecv_init(static_cast(recvbuf) + i * recvcount * recvext, recvcount, - recvtype, i, system_tag, comm); - count++; + requests.push_back(Request::irecv_init(static_cast(recvbuf) + i * recvcount * recvext, recvcount, + recvtype, i, system_tag, comm)); } /* Now post all sends in reverse order * - We would like to minimize the search time through message queue @@ -213,13 +181,11 @@ int colls::ialltoall(const void* sendbuf, int sendcount, MPI_Datatype sendtype, * TODO: check the previous assertion */ for (int i = (rank + size - 1) % size; i != rank; i = (i + size - 1) % size) { - requests[count] = Request::isend_init(static_cast(sendbuf) + i * sendcount * sendext, sendcount, - sendtype, i, system_tag, comm); - count++; + requests.push_back(Request::isend_init(static_cast(sendbuf) + i * sendcount * sendext, sendcount, + sendtype, i, system_tag, comm)); } /* Wait for them all. */ - Request::startall(count, requests); - (*request)->set_nbc_requests(requests, count); + (*request)->start_nbc_requests(requests); } return MPI_SUCCESS; } @@ -232,12 +198,13 @@ int colls::ialltoallv(const void* sendbuf, const int* sendcounts, const int* sen MPI_Aint lb = 0; MPI_Aint sendext = 0; MPI_Aint recvext = 0; + std::vector requests; /* Initialize. */ int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); sendtype->extent(&lb, &sendext); recvtype->extent(&lb, &recvext); /* Local copy from self */ @@ -245,14 +212,11 @@ int colls::ialltoallv(const void* sendbuf, const int* sendcounts, const int* sen static_cast(recvbuf) + recvdisps[rank] * recvext, recvcounts[rank], recvtype); if (err == MPI_SUCCESS && size > 1) { /* Initiate all send/recv to/from others. */ - auto* requests = new MPI_Request[2 * (size - 1)]; - int count = 0; /* Create all receives that will be posted first */ for (int i = 0; i < size; ++i) { if (i != rank) { - requests[count] = Request::irecv_init(static_cast(recvbuf) + recvdisps[i] * recvext, - recvcounts[i], recvtype, i, system_tag, comm); - count++; + requests.push_back(Request::irecv_init(static_cast(recvbuf) + recvdisps[i] * recvext, + recvcounts[i], recvtype, i, system_tag, comm)); }else{ XBT_DEBUG("<%d> skip request creation [src = %d, recvcounts[src] = %d]", rank, i, recvcounts[i]); } @@ -260,16 +224,14 @@ int colls::ialltoallv(const void* sendbuf, const int* sendcounts, const int* sen /* Now create all sends */ for (int i = 0; i < size; ++i) { if (i != rank) { - requests[count] = Request::isend_init(static_cast(sendbuf) + senddisps[i] * sendext, - sendcounts[i], sendtype, i, system_tag, comm); - count++; + requests.push_back(Request::isend_init(static_cast(sendbuf) + senddisps[i] * sendext, + sendcounts[i], sendtype, i, system_tag, comm)); }else{ XBT_DEBUG("<%d> skip request creation [dst = %d, sendcounts[dst] = %d]", rank, i, sendcounts[i]); } } /* Wait for them all. */ - Request::startall(count, requests); - (*request)->set_nbc_requests(requests, count); + (*request)->start_nbc_requests(requests); } return err; } @@ -279,25 +241,23 @@ int colls::ialltoallw(const void* sendbuf, const int* sendcounts, const int* sen MPI_Comm comm, MPI_Request* request, int external) { const int system_tag = COLL_TAG_ALLTOALLW-external; + std::vector requests; /* Initialize. */ int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); /* Local copy from self */ int err = (sendcounts[rank]>0 && recvcounts[rank]) ? Datatype::copy(static_cast(sendbuf) + senddisps[rank], sendcounts[rank], sendtypes[rank], static_cast(recvbuf) + recvdisps[rank], recvcounts[rank], recvtypes[rank]): MPI_SUCCESS; if (err == MPI_SUCCESS && size > 1) { /* Initiate all send/recv to/from others. */ - auto* requests = new MPI_Request[2 * (size - 1)]; - int count = 0; /* Create all receives that will be posted first */ for (int i = 0; i < size; ++i) { if (i != rank) { - requests[count] = Request::irecv_init(static_cast(recvbuf) + recvdisps[i], - recvcounts[i], recvtypes[i], i, system_tag, comm); - count++; + requests.push_back(Request::irecv_init(static_cast(recvbuf) + recvdisps[i], + recvcounts[i], recvtypes[i], i, system_tag, comm)); }else{ XBT_DEBUG("<%d> skip request creation [src = %d, recvcounts[src] = %d]", rank, i, recvcounts[i]); } @@ -305,16 +265,14 @@ int colls::ialltoallw(const void* sendbuf, const int* sendcounts, const int* sen /* Now create all sends */ for (int i = 0; i < size; ++i) { if (i != rank) { - requests[count] = Request::isend_init(static_cast(sendbuf) + senddisps[i] , - sendcounts[i], sendtypes[i], i, system_tag, comm); - count++; + requests.push_back(Request::isend_init(static_cast(sendbuf) + senddisps[i] , + sendcounts[i], sendtypes[i], i, system_tag, comm)); }else{ XBT_DEBUG("<%d> skip request creation [dst = %d, sendcounts[dst] = %d]", rank, i, sendcounts[i]); } } /* Wait for them all. */ - Request::startall(count, requests); - (*request)->set_nbc_requests(requests, count); + (*request)->start_nbc_requests(requests); } return err; } @@ -325,35 +283,29 @@ int colls::igather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, vo const int system_tag = COLL_TAG_GATHER-external; MPI_Aint lb = 0; MPI_Aint recvext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); if(rank != root) { // Send buffer to root - auto* requests = new MPI_Request[1]; - requests[0]=Request::isend(sendbuf, sendcount, sendtype, root, system_tag, comm); - (*request)->set_nbc_requests(requests, 1); + requests.push_back(Request::isend_init(sendbuf, sendcount, sendtype, root, system_tag, comm)); } else { recvtype->extent(&lb, &recvext); // Local copy from root Datatype::copy(sendbuf, sendcount, sendtype, static_cast(recvbuf) + root * recvcount * recvext, recvcount, recvtype); // Receive buffers from senders - auto* requests = new MPI_Request[size - 1]; - int index = 0; for (int src = 0; src < size; src++) { if(src != root) { - requests[index] = Request::irecv_init(static_cast(recvbuf) + src * recvcount * recvext, recvcount, recvtype, - src, system_tag, comm); - index++; + requests.push_back(Request::irecv_init(static_cast(recvbuf) + src * recvcount * recvext, recvcount, recvtype, + src, system_tag, comm)); } } - // Wait for completion of irecv's. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); } + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -364,35 +316,30 @@ int colls::igatherv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, v int system_tag = COLL_TAG_GATHERV-external; MPI_Aint lb = 0; MPI_Aint recvext = 0; - + std::vector requests; + int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); if (rank != root) { // Send buffer to root - auto* requests = new MPI_Request[1]; - requests[0]=Request::isend(sendbuf, sendcount, sendtype, root, system_tag, comm); - (*request)->set_nbc_requests(requests, 1); + requests.push_back(Request::isend_init(sendbuf, sendcount, sendtype, root, system_tag, comm)); } else { recvtype->extent(&lb, &recvext); // Local copy from root Datatype::copy(sendbuf, sendcount, sendtype, static_cast(recvbuf) + displs[root] * recvext, recvcounts[root], recvtype); // Receive buffers from senders - auto* requests = new MPI_Request[size - 1]; - int index = 0; for (int src = 0; src < size; src++) { if(src != root) { - requests[index] = Request::irecv_init(static_cast(recvbuf) + displs[src] * recvext, - recvcounts[src], recvtype, src, system_tag, comm); - index++; + requests.push_back(Request::irecv_init(static_cast(recvbuf) + displs[src] * recvext, + recvcounts[src], recvtype, src, system_tag, comm)); } } - // Wait for completion of irecv's. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); } + // Wait for completion of irecv's. + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } int colls::iscatterv(const void* sendbuf, const int* sendcounts, const int* displs, MPI_Datatype sendtype, @@ -402,16 +349,15 @@ int colls::iscatterv(const void* sendbuf, const int* sendcounts, const int* disp int system_tag = COLL_TAG_SCATTERV-external; MPI_Aint lb = 0; MPI_Aint sendext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( nullptr, 0, MPI_BYTE, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); if(rank != root) { // Recv buffer from root - auto* requests = new MPI_Request[1]; - requests[0]=Request::irecv(recvbuf, recvcount, recvtype, root, system_tag, comm); - (*request)->set_nbc_requests(requests, 1); + requests.push_back(Request::irecv_init(recvbuf, recvcount, recvtype, root, system_tag, comm)); } else { sendtype->extent(&lb, &sendext); // Local copy from root @@ -420,19 +366,14 @@ int colls::iscatterv(const void* sendbuf, const int* sendcounts, const int* disp sendtype, recvbuf, recvcount, recvtype); } // Send buffers to receivers - auto* requests = new MPI_Request[size - 1]; - int index = 0; for (int dst = 0; dst < size; dst++) { if (dst != root) { - requests[index] = Request::isend_init(static_cast(sendbuf) + displs[dst] * sendext, sendcounts[dst], - sendtype, dst, system_tag, comm); - index++; + requests.push_back(Request::isend_init(static_cast(sendbuf) + displs[dst] * sendext, sendcounts[dst], + sendtype, dst, system_tag, comm)); } } - // Wait for completion of isend's. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); } + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -442,6 +383,7 @@ int colls::ireduce(const void* sendbuf, void* recvbuf, int count, MPI_Datatype d const int system_tag = COLL_TAG_REDUCE-external; MPI_Aint lb = 0; MPI_Aint dataext = 0; + std::vector requests; const void* real_sendbuf = sendbuf; @@ -460,36 +402,28 @@ int colls::ireduce(const void* sendbuf, void* recvbuf, int count, MPI_Datatype d if(rank == root){ (*request) = new Request( recvbuf, count, datatype, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT, op); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC, op); } else (*request) = new Request( nullptr, count, datatype, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC); if(rank != root) { // Send buffer to root - auto* requests = new MPI_Request[1]; - requests[0] = Request::isend(real_sendbuf, count, datatype, root, system_tag, comm); - (*request)->set_nbc_requests(requests, 1); + requests.push_back(Request::isend_init(real_sendbuf, count, datatype, root, system_tag, comm)); } else { datatype->extent(&lb, &dataext); // Local copy from root if (real_sendbuf != nullptr && recvbuf != nullptr) Datatype::copy(real_sendbuf, count, datatype, recvbuf, count, datatype); // Receive buffers from senders - auto* requests = new MPI_Request[size - 1]; - int index = 0; for (int src = 0; src < size; src++) { if (src != root) { - requests[index] = - Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, src, system_tag, comm); - index++; + requests.push_back(Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, src, system_tag, comm)); } } - // Wait for completion of irecv's. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); - } + } + (*request)->start_nbc_requests(requests); if( sendbuf == MPI_IN_PLACE ) { smpi_free_tmp_buffer(tmp_sendbuf); } @@ -503,29 +437,25 @@ int colls::iallreduce(const void* sendbuf, void* recvbuf, int count, MPI_Datatyp const int system_tag = COLL_TAG_ALLREDUCE-external; MPI_Aint lb = 0; MPI_Aint dataext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( recvbuf, count, datatype, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT, op); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC, op); // FIXME: check for errors datatype->extent(&lb, &dataext); // Local copy from self Datatype::copy(sendbuf, count, datatype, recvbuf, count, datatype); // Send/Recv buffers to/from others; - auto* requests = new MPI_Request[2 * (size - 1)]; - int index = 0; for (int other = 0; other < size; other++) { if(other != rank) { - requests[index] = Request::isend_init(sendbuf, count, datatype, other, system_tag,comm); - index++; - requests[index] = Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, - other, system_tag, comm); - index++; + requests.push_back(Request::isend_init(sendbuf, count, datatype, other, system_tag,comm)); + requests.push_back(Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, + other, system_tag, comm)); } } - Request::startall(2 * (size - 1), requests); - (*request)->set_nbc_requests(requests, 2 * (size - 1)); + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -535,30 +465,26 @@ int colls::iscan(const void* sendbuf, void* recvbuf, int count, MPI_Datatype dat int system_tag = -888-external; MPI_Aint lb = 0; MPI_Aint dataext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); (*request) = new Request( recvbuf, count, datatype, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT, op); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC, op); datatype->extent(&lb, &dataext); // Local copy from self Datatype::copy(sendbuf, count, datatype, recvbuf, count, datatype); // Send/Recv buffers to/from others - auto* requests = new MPI_Request[size - 1]; - int index = 0; for (int other = 0; other < rank; other++) { - requests[index] = Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, other, system_tag, comm); - index++; + requests.push_back(Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, other, system_tag, comm)); } for (int other = rank + 1; other < size; other++) { - requests[index] = Request::isend_init(sendbuf, count, datatype, other, system_tag, comm); - index++; + requests.push_back(Request::isend_init(sendbuf, count, datatype, other, system_tag, comm)); } // Wait for completion of all comms. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -568,28 +494,25 @@ int colls::iexscan(const void* sendbuf, void* recvbuf, int count, MPI_Datatype d int system_tag = -888-external; MPI_Aint lb = 0; MPI_Aint dataext = 0; + std::vector requests; + int rank = comm->rank(); int size = comm->size(); (*request) = new Request( recvbuf, count, datatype, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT, op); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC, op); datatype->extent(&lb, &dataext); if(rank != 0) memset(recvbuf, 0, count*dataext); // Send/Recv buffers to/from others - auto* requests = new MPI_Request[size - 1]; - int index = 0; for (int other = 0; other < rank; other++) { - requests[index] = Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, other, system_tag, comm); - index++; + requests.push_back(Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, other, system_tag, comm)); } for (int other = rank + 1; other < size; other++) { - requests[index] = Request::isend_init(sendbuf, count, datatype, other, system_tag, comm); - index++; + requests.push_back(Request::isend_init(sendbuf, count, datatype, other, system_tag, comm)); } // Wait for completion of all comms. - Request::startall(size - 1, requests); - (*request)->set_nbc_requests(requests, size - 1); + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } @@ -600,35 +523,30 @@ int colls::ireduce_scatter(const void* sendbuf, void* recvbuf, const int* recvco const int system_tag = COLL_TAG_REDUCE_SCATTER-external; MPI_Aint lb = 0; MPI_Aint dataext = 0; + std::vector requests; int rank = comm->rank(); int size = comm->size(); int count=recvcounts[rank]; (*request) = new Request( recvbuf, count, datatype, - rank,rank, system_tag, comm, MPI_REQ_PERSISTENT, op); + rank,rank, system_tag, comm, MPI_REQ_PERSISTENT|MPI_REQ_NBC, op); datatype->extent(&lb, &dataext); // Send/Recv buffers to/from others; - auto* requests = new MPI_Request[2 * (size - 1)]; - int index = 0; int recvdisp=0; for (int other = 0; other < size; other++) { if(other != rank) { - requests[index] = Request::isend_init(static_cast(sendbuf) + recvdisp * dataext, recvcounts[other], datatype, other, system_tag,comm); + requests.push_back(Request::isend_init(static_cast(sendbuf) + recvdisp * dataext, recvcounts[other], datatype, other, system_tag,comm)); XBT_VERB("sending with recvdisp %d", recvdisp); - index++; - requests[index] = Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, - other, system_tag, comm); - index++; + requests.push_back(Request::irecv_init(smpi_get_tmp_sendbuffer(count * dataext), count, datatype, + other, system_tag, comm)); }else{ Datatype::copy(static_cast(sendbuf) + recvdisp * dataext, count, datatype, recvbuf, count, datatype); } recvdisp+=recvcounts[other]; } - Request::startall(2 * (size - 1), requests); - (*request)->set_nbc_requests(requests, 2 * (size - 1)); + (*request)->start_nbc_requests(requests); return MPI_SUCCESS; } -} -} +} // namespace simgrid::smpi