X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b66e38b815d05be3ae3a4f98b3b27a2ea705fc46..73e97710413bba3ee2ae8baab0537fbd78811016:/src/smpi/bindings/smpi_pmpi_request.cpp diff --git a/src/smpi/bindings/smpi_pmpi_request.cpp b/src/smpi/bindings/smpi_pmpi_request.cpp index 67be9f38a2..79a5f4dbc6 100644 --- a/src/smpi/bindings/smpi_pmpi_request.cpp +++ b/src/smpi/bindings/smpi_pmpi_request.cpp @@ -11,11 +11,9 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi); -static int getPid(MPI_Comm, int); -static int getPid(MPI_Comm comm, int id) +static aid_t getPid(MPI_Comm comm, int id) { - simgrid::s4u::ActorPtr actor = comm->group()->actor(id); - return (actor == nullptr) ? MPI_UNDEFINED : actor->get_pid(); + return comm->group()->actor(id); } #define CHECK_SEND_INPUTS\ @@ -32,7 +30,7 @@ static int getPid(MPI_Comm comm, int id) CHECK_REQUEST(7)\ *request = MPI_REQUEST_NULL;\ CHECK_SEND_INPUTS - + #define CHECK_IRECV_INPUTS\ SET_BUF1(buf)\ CHECK_REQUEST(7)\ @@ -50,9 +48,8 @@ int PMPI_Send_init(const void *buf, int count, MPI_Datatype datatype, int dst, i { CHECK_ISEND_INPUTS - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; *request = simgrid::smpi::Request::send_init(buf, count, datatype, dst, tag, comm); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -61,9 +58,8 @@ int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag { CHECK_IRECV_INPUTS - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; *request = simgrid::smpi::Request::recv_init(buf, count, datatype, src, tag, comm); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -78,11 +74,10 @@ int PMPI_Ssend_init(const void* buf, int count, MPI_Datatype datatype, int dst, CHECK_ISEND_INPUTS int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; *request = simgrid::smpi::Request::ssend_init(buf, count, datatype, dst, tag, comm); retval = MPI_SUCCESS; - smpi_bench_begin(); return retval; } @@ -95,17 +90,15 @@ int PMPI_Start(MPI_Request * request) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; CHECK_REQUEST_VALID(1) if ( *request == MPI_REQUEST_NULL) { retval = MPI_ERR_REQUEST; } else { MPI_Request req = *request; - int my_proc_id = (req->comm() != MPI_COMM_NULL) ? simgrid::s4u::this_actor::get_pid() : -1; + aid_t my_proc_id = (req->comm() != MPI_COMM_NULL) ? simgrid::s4u::this_actor::get_pid() : -1; TRACE_smpi_comm_in(my_proc_id, __func__, - new simgrid::instr::Pt2PtTIData("Start", req->dst(), - req->size(), - req->tag(), + new simgrid::instr::Pt2PtTIData("Start", req->dst(), req->size(), req->tag(), simgrid::smpi::Datatype::encode(req->type()))); if (not TRACE_smpi_view_internals() && req->flags() & MPI_REQ_SEND) TRACE_smpi_send(my_proc_id, my_proc_id, getPid(req->comm(), req->dst()), req->tag(), req->size()); @@ -117,14 +110,13 @@ int PMPI_Start(MPI_Request * request) retval = MPI_SUCCESS; TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } int PMPI_Startall(int count, MPI_Request * requests) { int retval; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (requests == nullptr) { retval = MPI_ERR_ARG; } else { @@ -135,7 +127,7 @@ int PMPI_Startall(int count, MPI_Request * requests) } } if(retval != MPI_ERR_REQUEST) { - int my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::NoOpTIData("Startall")); if (not TRACE_smpi_view_internals()) for (int i = 0; i < count; i++) { @@ -155,7 +147,6 @@ int PMPI_Startall(int count, MPI_Request * requests) TRACE_smpi_comm_out(my_proc_id); } } - smpi_bench_begin(); return retval; } @@ -163,14 +154,13 @@ int PMPI_Request_free(MPI_Request * request) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (*request != MPI_REQUEST_NULL) { (*request)->mark_as_deleted(); simgrid::smpi::Request::unref(request); *request = MPI_REQUEST_NULL; retval = MPI_SUCCESS; } - smpi_bench_begin(); return retval; } @@ -178,15 +168,14 @@ int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MP { CHECK_IRECV_INPUTS - smpi_bench_end(); - int my_proc_id = simgrid::s4u::this_actor::get_pid(); + const SmpiBenchGuard suspend_bench; + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("irecv", src, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); *request = simgrid::smpi::Request::irecv(buf, count, datatype, src, tag, comm); TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -195,19 +184,18 @@ int PMPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dst, int t { CHECK_ISEND_INPUTS - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; int retval = 0; - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int trace_dst = getPid(comm, dst); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t trace_dst = getPid(comm, dst); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("isend", dst, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); TRACE_smpi_send(my_proc_id, my_proc_id, trace_dst, tag, count * datatype->size()); *request = simgrid::smpi::Request::isend(buf, count, datatype, dst, tag, comm); retval = MPI_SUCCESS; TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return retval; } @@ -222,17 +210,16 @@ int PMPI_Issend(const void* buf, int count, MPI_Datatype datatype, int dst, int { CHECK_ISEND_INPUTS - smpi_bench_end(); - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int trace_dst = getPid(comm, dst); + const SmpiBenchGuard suspend_bench; + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t trace_dst = getPid(comm, dst); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("ISsend", dst, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); TRACE_smpi_send(my_proc_id, my_proc_id, trace_dst, tag, count * datatype->size()); *request = simgrid::smpi::Request::issend(buf, count, datatype, dst, tag, comm); TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -246,7 +233,7 @@ int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI CHECK_TAG(5, tag) CHECK_COMM(6) - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (src == MPI_PROC_NULL) { if(status != MPI_STATUS_IGNORE){ simgrid::smpi::Status::empty(status); @@ -256,28 +243,23 @@ int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI } else if (src!=MPI_ANY_SOURCE && (src >= comm->group()->size() || src <0)){ retval = MPI_ERR_RANK; } else { - int my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("recv", src, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); retval = simgrid::smpi::Request::recv(buf, count, datatype, src, tag, comm, status); // the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE) - int src_traced=0; - if (status != MPI_STATUS_IGNORE) - src_traced = getPid(comm, status->MPI_SOURCE); - else - src_traced = getPid(comm, src); if (not TRACE_smpi_view_internals()) { + aid_t src_traced = (status != MPI_STATUS_IGNORE) ? getPid(comm, status->MPI_SOURCE) : getPid(comm, src); TRACE_smpi_recv(src_traced, my_proc_id, tag); } - + TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } @@ -285,19 +267,18 @@ int PMPI_Send(const void *buf, int count, MPI_Datatype datatype, int dst, int ta { CHECK_SEND_INPUTS - smpi_bench_end(); - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int dst_traced = getPid(comm, dst); + const SmpiBenchGuard suspend_bench; + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t dst_traced = getPid(comm, dst); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("send", dst, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); if (not TRACE_smpi_view_internals()) { TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, tag, count * datatype->size()); } simgrid::smpi::Request::send(buf, count, datatype, dst, tag, comm); TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -310,25 +291,24 @@ int PMPI_Bsend(const void* buf, int count, MPI_Datatype datatype, int dst, int t { CHECK_SEND_INPUTS - smpi_bench_end(); - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int dst_traced = getPid(comm, dst); + const SmpiBenchGuard suspend_bench; + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t dst_traced = getPid(comm, dst); int bsend_buf_size = 0; void* bsend_buf = nullptr; smpi_process()->bsend_buffer(&bsend_buf, &bsend_buf_size); int size = datatype->get_extent() * count; - if(bsend_buf==nullptr || bsend_buf_size < size + MPI_BSEND_OVERHEAD ) + if (bsend_buf == nullptr || bsend_buf_size < size + MPI_BSEND_OVERHEAD) return MPI_ERR_BUFFER; TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("bsend", dst, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); if (not TRACE_smpi_view_internals()) { TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, tag, count * datatype->size()); } simgrid::smpi::Request::bsend(buf, count, datatype, dst, tag, comm); TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -336,23 +316,22 @@ int PMPI_Ibsend(const void* buf, int count, MPI_Datatype datatype, int dst, int { CHECK_ISEND_INPUTS - smpi_bench_end(); - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int trace_dst = getPid(comm, dst); + const SmpiBenchGuard suspend_bench; + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t trace_dst = getPid(comm, dst); int bsend_buf_size = 0; void* bsend_buf = nullptr; smpi_process()->bsend_buffer(&bsend_buf, &bsend_buf_size); int size = datatype->get_extent() * count; - if(bsend_buf==nullptr || bsend_buf_size < size + MPI_BSEND_OVERHEAD ) + if (bsend_buf == nullptr || bsend_buf_size < size + MPI_BSEND_OVERHEAD) return MPI_ERR_BUFFER; TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("ibsend", dst, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); TRACE_smpi_send(my_proc_id, my_proc_id, trace_dst, tag, count * datatype->size()); *request = simgrid::smpi::Request::ibsend(buf, count, datatype, dst, tag, comm); TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -360,7 +339,7 @@ int PMPI_Bsend_init(const void* buf, int count, MPI_Datatype datatype, int dst, { CHECK_ISEND_INPUTS - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; int retval = 0; int bsend_buf_size = 0; void* bsend_buf = nullptr; @@ -371,7 +350,6 @@ int PMPI_Bsend_init(const void* buf, int count, MPI_Datatype datatype, int dst, *request = simgrid::smpi::Request::bsend_init(buf, count, datatype, dst, tag, comm); retval = MPI_SUCCESS; } - smpi_bench_begin(); return retval; } @@ -379,17 +357,16 @@ int PMPI_Ssend(const void* buf, int count, MPI_Datatype datatype, int dst, int t { CHECK_SEND_INPUTS - smpi_bench_end(); - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int dst_traced = getPid(comm, dst); + const SmpiBenchGuard suspend_bench; + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t dst_traced = getPid(comm, dst); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::Pt2PtTIData("Ssend", dst, - datatype->is_replayable() ? count : count * datatype->size(), + count, tag, simgrid::smpi::Datatype::encode(datatype))); TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, tag, count * datatype->size()); simgrid::smpi::Request::ssend(buf, count, datatype, dst, tag, comm); TRACE_smpi_comm_out(my_proc_id); - smpi_bench_begin(); return MPI_SUCCESS; } @@ -408,7 +385,7 @@ int PMPI_Sendrecv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, int CHECK_BUFFER(6, recvbuf, recvcount, recvtype) CHECK_TAG(10, recvtag) CHECK_COMM(11) - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (src == MPI_PROC_NULL) { if(status!=MPI_STATUS_IGNORE){ @@ -424,9 +401,9 @@ int PMPI_Sendrecv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, int (src!=MPI_ANY_SOURCE && (src >= comm->group()->size() || src <0))){ retval = MPI_ERR_RANK; } else { - int my_proc_id = simgrid::s4u::this_actor::get_pid(); - int dst_traced = getPid(comm, dst); - int src_traced = getPid(comm, src); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t dst_traced = getPid(comm, dst); + aid_t src_traced = getPid(comm, src); // FIXME: Hack the way to trace this one auto dst_hack = std::make_shared>(); @@ -435,8 +412,8 @@ int PMPI_Sendrecv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, int src_hack->push_back(src_traced); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::VarCollTIData( - "sendRecv", -1, sendtype->is_replayable() ? sendcount : sendcount * sendtype->size(), - dst_hack, recvtype->is_replayable() ? recvcount : recvcount * recvtype->size(), src_hack, + "sendRecv", -1, sendcount, + dst_hack, recvcount, src_hack, simgrid::smpi::Datatype::encode(sendtype), simgrid::smpi::Datatype::encode(recvtype))); TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, sendtag, sendcount * sendtype->size()); @@ -449,7 +426,6 @@ int PMPI_Sendrecv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, int TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } @@ -476,7 +452,7 @@ int PMPI_Sendrecv_replace(void* buf, int count, MPI_Datatype datatype, int dst, int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (request == nullptr || flag == nullptr) { retval = MPI_ERR_ARG; } else if (*request == MPI_REQUEST_NULL) { @@ -486,14 +462,13 @@ int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status) } retval = MPI_SUCCESS; } else { - int my_proc_id = ((*request)->comm() != MPI_COMM_NULL) ? simgrid::s4u::this_actor::get_pid() : -1; + aid_t my_proc_id = ((*request)->comm() != MPI_COMM_NULL) ? simgrid::s4u::this_actor::get_pid() : -1; TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::NoOpTIData("test")); retval = simgrid::smpi::Request::test(request,status, flag); TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } @@ -501,16 +476,15 @@ int PMPI_Testany(int count, MPI_Request requests[], int *index, int *flag, MPI_S { int retval = 0; CHECK_COUNT(1, count) - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (index == nullptr || flag == nullptr) { retval = MPI_ERR_ARG; } else { - int my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::NoOpTIData("testany")); retval = simgrid::smpi::Request::testany(count, requests, index, flag, status); TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } @@ -518,16 +492,15 @@ int PMPI_Testall(int count, MPI_Request* requests, int* flag, MPI_Status* status { int retval = 0; CHECK_COUNT(1, count) - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (flag == nullptr) { retval = MPI_ERR_ARG; } else { - int my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::NoOpTIData("testall")); retval = simgrid::smpi::Request::testall(count, requests, flag, statuses); TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } @@ -535,22 +508,21 @@ int PMPI_Testsome(int incount, MPI_Request requests[], int* outcount, int* indic { int retval = 0; CHECK_COUNT(1, incount) - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (outcount == nullptr) { retval = MPI_ERR_ARG; } else { - int my_proc_id = simgrid::s4u::this_actor::get_pid(); + aid_t my_proc_id = simgrid::s4u::this_actor::get_pid(); TRACE_smpi_comm_in(my_proc_id, __func__, new simgrid::instr::NoOpTIData("testsome")); retval = simgrid::smpi::Request::testsome(incount, requests, outcount, indices, status); TRACE_smpi_comm_out(my_proc_id); } - smpi_bench_begin(); return retval; } int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; CHECK_COMM(6) if(source!=MPI_ANY_SOURCE && source!=MPI_PROC_NULL)\ @@ -566,13 +538,12 @@ int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) { simgrid::smpi::Request::probe(source, tag, comm, status); retval = MPI_SUCCESS; } - smpi_bench_begin(); return retval; } int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; CHECK_COMM(6) if(source!=MPI_ANY_SOURCE && source!=MPI_PROC_NULL)\ CHECK_RANK(1, source, comm) @@ -590,21 +561,19 @@ int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* statu simgrid::smpi::Request::iprobe(source, tag, comm, flag, status); retval = MPI_SUCCESS; } - smpi_bench_begin(); return retval; } -// TODO: cheinrich: Move declaration to other file? Rename this function - it's used for PMPI_Wait*? -static void trace_smpi_recv_helper(MPI_Request* request, MPI_Status* status) +static void trace_smpi_wait_recv_helper(MPI_Request* request, MPI_Status* status) { const simgrid::smpi::Request* req = *request; // Requests already received are null. Is this request a wait for RECV? if (req != MPI_REQUEST_NULL && (req->flags() & MPI_REQ_RECV)) { - int src_traced = req->src(); - int dst_traced = req->dst(); + aid_t src_traced = req->src(); + aid_t dst_traced = req->dst(); // the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE) if (src_traced == MPI_ANY_SOURCE && status != MPI_STATUS_IGNORE) - src_traced = req->comm()->group()->actor(status->MPI_SOURCE)->get_pid(); + src_traced = req->comm()->group()->actor(status->MPI_SOURCE); TRACE_smpi_recv(src_traced, dst_traced, req->tag()); } } @@ -613,38 +582,36 @@ int PMPI_Wait(MPI_Request * request, MPI_Status * status) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; simgrid::smpi::Status::empty(status); - CHECK_NULL(1, MPI_ERR_ARG, request) + CHECK_NULL(1, MPI_ERR_ARG, request) if (*request == MPI_REQUEST_NULL) { retval = MPI_SUCCESS; } else { // for tracing, save the handle which might get overridden before we can use the helper on it MPI_Request savedreq = *request; - if (savedreq != MPI_REQUEST_NULL && not(savedreq->flags() & MPI_REQ_FINISHED) - && not(savedreq->flags() & MPI_REQ_GENERALIZED)) + if (not(savedreq->flags() & (MPI_REQ_FINISHED | MPI_REQ_GENERALIZED | MPI_REQ_NBC))) savedreq->ref();//don't erase the handle in Request::wait, we'll need it later else savedreq = MPI_REQUEST_NULL; - int my_proc_id = (*request)->comm() != MPI_COMM_NULL - ? simgrid::s4u::this_actor::get_pid() - : -1; // TODO: cheinrich: Check if this correct or if it should be MPI_UNDEFINED + aid_t my_proc_id = (*request)->comm() != MPI_COMM_NULL ? simgrid::s4u::this_actor::get_pid() : -1; TRACE_smpi_comm_in(my_proc_id, __func__, - new simgrid::instr::WaitTIData((*request)->src(), (*request)->dst(), (*request)->tag())); + new simgrid::instr::WaitTIData(MPI_COMM_WORLD->group()->rank((*request)->src()), + MPI_COMM_WORLD->group()->rank((*request)->dst()), + (*request)->tag())); retval = simgrid::smpi::Request::wait(request, status); //the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE) TRACE_smpi_comm_out(my_proc_id); - trace_smpi_recv_helper(&savedreq, status); + trace_smpi_wait_recv_helper(&savedreq, status); if (savedreq != MPI_REQUEST_NULL) simgrid::smpi::Request::unref(&savedreq); } - smpi_bench_begin(); return retval; } @@ -656,23 +623,23 @@ int PMPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * sta if (count <= 0) return MPI_SUCCESS; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; // for tracing, save the handles which might get overridden before we can use the helper on it std::vector savedreqs(requests, requests + count); for (MPI_Request& req : savedreqs) { - if (req != MPI_REQUEST_NULL && not(req->flags() & MPI_REQ_FINISHED)) + if (req != MPI_REQUEST_NULL && not(req->flags() & (MPI_REQ_FINISHED | MPI_REQ_NBC))) req->ref(); else req = MPI_REQUEST_NULL; } - int rank_traced = simgrid::s4u::this_actor::get_pid(); // FIXME: In PMPI_Wait, we check if the comm is null? + aid_t rank_traced = simgrid::s4u::this_actor::get_pid(); // FIXME: In PMPI_Wait, we check if the comm is null? TRACE_smpi_comm_in(rank_traced, __func__, new simgrid::instr::CpuTIData("waitAny", count)); *index = simgrid::smpi::Request::waitany(count, requests, status); if(*index!=MPI_UNDEFINED){ - trace_smpi_recv_helper(&savedreqs[*index], status); + trace_smpi_wait_recv_helper(&savedreqs[*index], status); TRACE_smpi_comm_out(rank_traced); } @@ -680,30 +647,29 @@ int PMPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * sta if (req != MPI_REQUEST_NULL) simgrid::smpi::Request::unref(&req); - smpi_bench_begin(); return MPI_SUCCESS; } int PMPI_Waitall(int count, MPI_Request requests[], MPI_Status status[]) { - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; CHECK_COUNT(1, count) // for tracing, save the handles which might get overridden before we can use the helper on it std::vector savedreqs(requests, requests + count); for (MPI_Request& req : savedreqs) { - if (req != MPI_REQUEST_NULL && not(req->flags() & MPI_REQ_FINISHED)) + if (req != MPI_REQUEST_NULL && not(req->flags() & (MPI_REQ_FINISHED | MPI_REQ_NBC))) req->ref(); else req = MPI_REQUEST_NULL; } - int rank_traced = simgrid::s4u::this_actor::get_pid(); // FIXME: In PMPI_Wait, we check if the comm is null? + aid_t rank_traced = simgrid::s4u::this_actor::get_pid(); // FIXME: In PMPI_Wait, we check if the comm is null? TRACE_smpi_comm_in(rank_traced, __func__, new simgrid::instr::CpuTIData("waitall", count)); int retval = simgrid::smpi::Request::waitall(count, requests, status); for (int i = 0; i < count; i++) { - trace_smpi_recv_helper(&savedreqs[i], status!=MPI_STATUSES_IGNORE ? &status[i]: MPI_STATUS_IGNORE); + trace_smpi_wait_recv_helper(&savedreqs[i], status != MPI_STATUSES_IGNORE ? &status[i] : MPI_STATUS_IGNORE); } TRACE_smpi_comm_out(rank_traced); @@ -711,7 +677,6 @@ int PMPI_Waitall(int count, MPI_Request requests[], MPI_Status status[]) if (req != MPI_REQUEST_NULL) simgrid::smpi::Request::unref(&req); - smpi_bench_begin(); return retval; } @@ -719,14 +684,13 @@ int PMPI_Waitsome(int incount, MPI_Request requests[], int *outcount, int *indic { int retval = 0; CHECK_COUNT(1, incount) - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; if (outcount == nullptr) { retval = MPI_ERR_ARG; } else { *outcount = simgrid::smpi::Request::waitsome(incount, requests, indices, status); retval = MPI_SUCCESS; } - smpi_bench_begin(); return retval; } @@ -734,7 +698,7 @@ int PMPI_Cancel(MPI_Request* request) { int retval = 0; - smpi_bench_end(); + const SmpiBenchGuard suspend_bench; CHECK_REQUEST_VALID(1) if (*request == MPI_REQUEST_NULL) { retval = MPI_ERR_REQUEST; @@ -742,7 +706,6 @@ int PMPI_Cancel(MPI_Request* request) (*request)->cancel(); retval = MPI_SUCCESS; } - smpi_bench_begin(); return retval; } @@ -752,7 +715,7 @@ int PMPI_Test_cancelled(const MPI_Status* status, int* flag){ return MPI_ERR_ARG; } *flag=simgrid::smpi::Status::cancelled(status); - return MPI_SUCCESS; + return MPI_SUCCESS; } int PMPI_Status_set_cancelled(MPI_Status* status, int flag){ @@ -760,7 +723,7 @@ int PMPI_Status_set_cancelled(MPI_Status* status, int flag){ return MPI_ERR_ARG; } simgrid::smpi::Status::set_cancelled(status,flag); - return MPI_SUCCESS; + return MPI_SUCCESS; } int PMPI_Status_set_elements(MPI_Status* status, MPI_Datatype datatype, int count){