Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid copying data if it comes from/to a shared buffer, even internally.
[simgrid.git] / src / smpi / mpi / smpi_request.cpp
1 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "smpi_request.hpp"
7
8 #include "mc/mc.h"
9 #include "private.hpp"
10 #include "simgrid/Exception.hpp"
11 #include "simgrid/s4u/Exec.hpp"
12 #include "smpi_comm.hpp"
13 #include "smpi_datatype.hpp"
14 #include "smpi_host.hpp"
15 #include "smpi_op.hpp"
16 #include "src/kernel/activity/CommImpl.hpp"
17 #include "src/mc/mc_replay.hpp"
18 #include "src/smpi/include/smpi_actor.hpp"
19
20 #include <algorithm>
21
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_request, smpi, "Logging specific to SMPI (request)");
23
24 static simgrid::config::Flag<double> smpi_iprobe_sleep(
25   "smpi/iprobe", "Minimum time to inject inside a call to MPI_Iprobe", 1e-4);
26 static simgrid::config::Flag<double> smpi_test_sleep(
27   "smpi/test", "Minimum time to inject inside a call to MPI_Test", 1e-4);
28
29 std::vector<s_smpi_factor_t> smpi_ois_values;
30
31 extern void (*smpi_comm_copy_data_callback)(simgrid::kernel::activity::CommImpl*, void*, size_t);
32
33 namespace simgrid{
34 namespace smpi{
35
36 Request::Request(const void* buf, int count, MPI_Datatype datatype, int src, int dst, int tag, MPI_Comm comm, unsigned flags, MPI_Op op)
37     : buf_(const_cast<void*>(buf)), old_type_(datatype), src_(src), dst_(dst), tag_(tag), comm_(comm), flags_(flags), op_(op)
38 {
39   void *old_buf = nullptr;
40 // FIXME Handle the case of a partial shared malloc.
41   if ((((flags & MPI_REQ_RECV) != 0) && ((flags & MPI_REQ_ACCUMULATE) != 0)) || (datatype->flags() & DT_FLAG_DERIVED)) {
42     // This part handles the problem of non-contiguous memory
43     old_buf = const_cast<void*>(buf);
44     if (count==0){
45       buf_ = nullptr;
46     }else {
47       buf_ = xbt_malloc(count*datatype->size());
48       if ((datatype->flags() & DT_FLAG_DERIVED) && ((flags & MPI_REQ_SEND) != 0)) {
49         datatype->serialize(old_buf, buf_, count);
50       }
51     }
52   }
53   // This part handles the problem of non-contiguous memory (for the unserialization at the reception)
54   old_buf_  = old_buf;
55   size_ = datatype->size() * count;
56   datatype->ref();
57   comm_->ref();
58   if(op != MPI_REPLACE && op != MPI_OP_NULL)
59     op_->ref();
60   action_          = nullptr;
61   detached_        = false;
62   detached_sender_ = nullptr;
63   real_src_        = 0;
64   truncated_       = false;
65   real_size_       = 0;
66   real_tag_        = 0;
67   if (flags & MPI_REQ_PERSISTENT)
68     refcount_ = 1;
69   else
70     refcount_ = 0;
71   cancelled_ = 0;
72   generalized_funcs=nullptr;
73   nbc_requests_=nullptr;
74   nbc_requests_size_=0;
75 }
76
77 void Request::ref(){
78   refcount_++;
79 }
80
81 void Request::unref(MPI_Request* request)
82 {
83   if((*request) != MPI_REQUEST_NULL){
84     (*request)->refcount_--;
85     if((*request)->refcount_ < 0) {
86       (*request)->print_request("wrong refcount");
87       xbt_die("Whoops, wrong refcount");
88     }
89     if((*request)->refcount_==0){
90       if ((*request)->flags_ & MPI_REQ_GENERALIZED){
91         ((*request)->generalized_funcs)->free_fn(((*request)->generalized_funcs)->extra_state);
92         delete (*request)->generalized_funcs;
93       }else{
94         Comm::unref((*request)->comm_);
95         Datatype::unref((*request)->old_type_);
96       }
97       if ((*request)->op_!=MPI_REPLACE && (*request)->op_!=MPI_OP_NULL)
98         Op::unref(&(*request)->op_);
99
100       (*request)->print_request("Destroying");
101       delete *request;
102       *request = MPI_REQUEST_NULL;
103     }else{
104       (*request)->print_request("Decrementing");
105     }
106   }else{
107     xbt_die("freeing an already free request");
108   }
109 }
110
111 int Request::match_recv(void* a, void* b, simgrid::kernel::activity::CommImpl*)
112 {
113   MPI_Request ref = static_cast<MPI_Request>(a);
114   MPI_Request req = static_cast<MPI_Request>(b);
115   XBT_DEBUG("Trying to match a recv of src %d against %d, tag %d against %d, id %d against %d",ref->src_,req->src_, ref->tag_, req->tag_,ref->comm_->id(),req->comm_->id());
116
117   xbt_assert(ref, "Cannot match recv against null reference");
118   xbt_assert(req, "Cannot match recv against null request");
119   if((ref->comm_->id()==MPI_UNDEFINED || req->comm_->id() == MPI_UNDEFINED || (ref->comm_->id()==req->comm_->id()))
120     && ((ref->src_ == MPI_ANY_SOURCE  && (ref->comm_->group()->rank(req->src_) != MPI_UNDEFINED)) || req->src_ == ref->src_)
121     && ((ref->tag_ == MPI_ANY_TAG && req->tag_ >=0) || req->tag_ == ref->tag_)){
122     //we match, we can transfer some values
123     if(ref->src_ == MPI_ANY_SOURCE)
124       ref->real_src_ = req->src_;
125     if(ref->tag_ == MPI_ANY_TAG)
126       ref->real_tag_ = req->tag_;
127     if(ref->real_size_ < req->real_size_)
128       ref->truncated_ = true;
129     if (req->detached_)
130       ref->detached_sender_=req; //tie the sender to the receiver, as it is detached and has to be freed in the receiver
131     if(req->cancelled_==0)
132       req->cancelled_ = -1; // mark as uncancelable
133     XBT_DEBUG("match succeeded");
134     return 1;
135   }else return 0;
136 }
137
138 int Request::match_send(void* a, void* b, simgrid::kernel::activity::CommImpl*)
139 {
140   MPI_Request ref = static_cast<MPI_Request>(a);
141   MPI_Request req = static_cast<MPI_Request>(b);
142   XBT_DEBUG("Trying to match a send of src %d against %d, tag %d against %d, id %d against %d",ref->src_,req->src_, ref->tag_, req->tag_,ref->comm_->id(),req->comm_->id());
143   xbt_assert(ref, "Cannot match send against null reference");
144   xbt_assert(req, "Cannot match send against null request");
145
146   if((ref->comm_->id()==MPI_UNDEFINED || req->comm_->id() == MPI_UNDEFINED || (ref->comm_->id()==req->comm_->id()))
147       && ((req->src_ == MPI_ANY_SOURCE  && (req->comm_->group()->rank(ref->src_) != MPI_UNDEFINED)) || req->src_ == ref->src_)
148       && ((req->tag_ == MPI_ANY_TAG && ref->tag_ >=0)|| req->tag_ == ref->tag_)){
149     if(req->src_ == MPI_ANY_SOURCE)
150       req->real_src_ = ref->src_;
151     if(req->tag_ == MPI_ANY_TAG)
152       req->real_tag_ = ref->tag_;
153     if(req->real_size_ < ref->real_size_)
154       req->truncated_ = true;
155     if (ref->detached_)
156       req->detached_sender_=ref; //tie the sender to the receiver, as it is detached and has to be freed in the receiver
157     if(req->cancelled_==0)
158       req->cancelled_ = -1; // mark as uncancelable
159     XBT_DEBUG("match succeeded");
160     return 1;
161   } else
162     return 0;
163 }
164
165 void Request::print_request(const char *message)
166 {
167   XBT_VERB("%s  request %p  [buf = %p, size = %zu, src = %d, dst = %d, tag = %d, flags = %x]",
168        message, this, buf_, size_, src_, dst_, tag_, flags_);
169 }
170
171
172 /* factories, to hide the internal flags from the caller */
173 MPI_Request Request::bsend_init(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
174 {
175
176   return new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
177                      comm->group()->actor(dst)->get_pid(), tag, comm,
178                      MPI_REQ_PERSISTENT | MPI_REQ_SEND | MPI_REQ_PREPARED | MPI_REQ_BSEND);
179 }
180
181 MPI_Request Request::send_init(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
182 {
183
184   return new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
185                      comm->group()->actor(dst)->get_pid(), tag, comm,
186                      MPI_REQ_PERSISTENT | MPI_REQ_SEND | MPI_REQ_PREPARED);
187 }
188
189 MPI_Request Request::ssend_init(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
190 {
191   return new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
192                      comm->group()->actor(dst)->get_pid(), tag, comm,
193                      MPI_REQ_PERSISTENT | MPI_REQ_SSEND | MPI_REQ_SEND | MPI_REQ_PREPARED);
194 }
195
196 MPI_Request Request::isend_init(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
197 {
198   return new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
199                      comm->group()->actor(dst)->get_pid(), tag, comm,
200                      MPI_REQ_PERSISTENT | MPI_REQ_ISEND | MPI_REQ_SEND | MPI_REQ_PREPARED);
201 }
202
203
204 MPI_Request Request::rma_send_init(const void *buf, int count, MPI_Datatype datatype, int src, int dst, int tag, MPI_Comm comm,
205                                MPI_Op op)
206 {
207   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
208   if(op==MPI_OP_NULL){
209     request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, comm->group()->actor(src)->get_pid(),
210                           comm->group()->actor(dst)->get_pid(), tag, comm,
211                           MPI_REQ_RMA | MPI_REQ_NON_PERSISTENT | MPI_REQ_ISEND | MPI_REQ_SEND | MPI_REQ_PREPARED);
212   }else{
213     request      = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, comm->group()->actor(src)->get_pid(),
214                           comm->group()->actor(dst)->get_pid(), tag, comm,
215                           MPI_REQ_RMA | MPI_REQ_NON_PERSISTENT | MPI_REQ_ISEND | MPI_REQ_SEND | MPI_REQ_PREPARED |
216                               MPI_REQ_ACCUMULATE, op);
217   }
218   return request;
219 }
220
221 MPI_Request Request::recv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm)
222 {
223   return new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype,
224                      src == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : comm->group()->actor(src)->get_pid(),
225                      simgrid::s4u::this_actor::get_pid(), tag, comm,
226                      MPI_REQ_PERSISTENT | MPI_REQ_RECV | MPI_REQ_PREPARED);
227 }
228
229 MPI_Request Request::rma_recv_init(void *buf, int count, MPI_Datatype datatype, int src, int dst, int tag, MPI_Comm comm,
230                                MPI_Op op)
231 {
232   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
233   if(op==MPI_OP_NULL){
234     request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, comm->group()->actor(src)->get_pid(),
235                           comm->group()->actor(dst)->get_pid(), tag, comm,
236                           MPI_REQ_RMA | MPI_REQ_NON_PERSISTENT | MPI_REQ_RECV | MPI_REQ_PREPARED);
237   }else{
238     request      = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, comm->group()->actor(src)->get_pid(),
239                           comm->group()->actor(dst)->get_pid(), tag, comm,
240                           MPI_REQ_RMA | MPI_REQ_NON_PERSISTENT | MPI_REQ_RECV | MPI_REQ_PREPARED | MPI_REQ_ACCUMULATE, op);
241   }
242   return request;
243 }
244
245 MPI_Request Request::irecv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm)
246 {
247   return new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype,
248                      src == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : comm->group()->actor(src)->get_pid(),
249                      simgrid::s4u::this_actor::get_pid(), tag, comm,
250                      MPI_REQ_PERSISTENT | MPI_REQ_RECV | MPI_REQ_PREPARED);
251 }
252
253 MPI_Request Request::ibsend(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
254 {
255   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
256   request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
257                         comm->group()->actor(dst)->get_pid(), tag, comm,
258                         MPI_REQ_NON_PERSISTENT | MPI_REQ_ISEND | MPI_REQ_SEND | MPI_REQ_BSEND);
259   request->start();
260   return request;
261 }
262
263 MPI_Request Request::isend(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
264 {
265   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
266   request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
267                         comm->group()->actor(dst)->get_pid(), tag, comm,
268                         MPI_REQ_NON_PERSISTENT | MPI_REQ_ISEND | MPI_REQ_SEND);
269   request->start();
270   return request;
271 }
272
273 MPI_Request Request::issend(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
274 {
275   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
276   request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
277                         comm->group()->actor(dst)->get_pid(), tag, comm,
278                         MPI_REQ_NON_PERSISTENT | MPI_REQ_ISEND | MPI_REQ_SSEND | MPI_REQ_SEND);
279   request->start();
280   return request;
281 }
282
283
284 MPI_Request Request::irecv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm)
285 {
286   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
287   request             = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype,
288                         src == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : comm->group()->actor(src)->get_pid(),
289                         simgrid::s4u::this_actor::get_pid(), tag, comm, MPI_REQ_NON_PERSISTENT | MPI_REQ_RECV);
290   request->start();
291   return request;
292 }
293
294 void Request::recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status * status)
295 {
296   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
297   request = irecv(buf, count, datatype, src, tag, comm);
298   wait(&request,status);
299   request = nullptr;
300 }
301
302 void Request::bsend(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
303 {
304   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
305   request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
306                         comm->group()->actor(dst)->get_pid(), tag, comm, MPI_REQ_NON_PERSISTENT | MPI_REQ_SEND | MPI_REQ_BSEND);
307
308   request->start();
309   wait(&request, MPI_STATUS_IGNORE);
310   request = nullptr;
311 }
312
313 void Request::send(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
314 {
315   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
316   request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
317                         comm->group()->actor(dst)->get_pid(), tag, comm, MPI_REQ_NON_PERSISTENT | MPI_REQ_SEND);
318
319   request->start();
320   wait(&request, MPI_STATUS_IGNORE);
321   request = nullptr;
322 }
323
324 void Request::ssend(const void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
325 {
326   MPI_Request request = nullptr; /* MC needs the comm to be set to nullptr during the call */
327   request = new Request(buf == MPI_BOTTOM ? nullptr : buf, count, datatype, simgrid::s4u::this_actor::get_pid(),
328                         comm->group()->actor(dst)->get_pid(), tag, comm,
329                         MPI_REQ_NON_PERSISTENT | MPI_REQ_SSEND | MPI_REQ_SEND);
330
331   request->start();
332   wait(&request,MPI_STATUS_IGNORE);
333   request = nullptr;
334 }
335
336 void Request::sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,int dst, int sendtag,
337                        void *recvbuf, int recvcount, MPI_Datatype recvtype, int src, int recvtag,
338                        MPI_Comm comm, MPI_Status * status)
339 {
340   MPI_Request requests[2];
341   MPI_Status stats[2];
342   int myid = simgrid::s4u::this_actor::get_pid();
343   if ((comm->group()->actor(dst)->get_pid() == myid) && (comm->group()->actor(src)->get_pid() == myid)) {
344     Datatype::copy(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype);
345     if (status != MPI_STATUS_IGNORE) {
346       status->MPI_SOURCE = src;
347       status->MPI_TAG    = recvtag;
348       status->MPI_ERROR  = MPI_SUCCESS;
349       status->count      = sendcount * sendtype->size();
350     }
351     return;
352   }
353   requests[0] = isend_init(sendbuf, sendcount, sendtype, dst, sendtag, comm);
354   requests[1] = irecv_init(recvbuf, recvcount, recvtype, src, recvtag, comm);
355   startall(2, requests);
356   waitall(2, requests, stats);
357   unref(&requests[0]);
358   unref(&requests[1]);
359   if(status != MPI_STATUS_IGNORE) {
360     // Copy receive status
361     *status = stats[1];
362   }
363 }
364
365 void Request::start()
366 {
367   s4u::Mailbox* mailbox;
368
369   xbt_assert(action_ == nullptr, "Cannot (re-)start unfinished communication");
370   flags_ &= ~MPI_REQ_PREPARED;
371   flags_ &= ~MPI_REQ_FINISHED;
372   this->ref();
373
374   if ((flags_ & MPI_REQ_RECV) != 0) {
375     this->print_request("New recv");
376
377     simgrid::smpi::ActorExt* process = smpi_process_remote(simgrid::s4u::Actor::by_pid(dst_));
378
379     int async_small_thresh = simgrid::config::get_value<int>("smpi/async-small-thresh");
380
381     simgrid::s4u::MutexPtr mut = process->mailboxes_mutex();
382     if (async_small_thresh != 0 || (flags_ & MPI_REQ_RMA) != 0)
383       mut->lock();
384
385     if (async_small_thresh == 0 && (flags_ & MPI_REQ_RMA) == 0) {
386       mailbox = process->mailbox();
387     } else if (((flags_ & MPI_REQ_RMA) != 0) || static_cast<int>(size_) < async_small_thresh) {
388       //We have to check both mailboxes (because SSEND messages are sent to the large mbox).
389       //begin with the more appropriate one : the small one.
390       mailbox = process->mailbox_small();
391       XBT_DEBUG("Is there a corresponding send already posted in the small mailbox %s (in case of SSEND)?",
392                 mailbox->get_cname());
393       smx_activity_t action = mailbox->iprobe(0, &match_recv, static_cast<void*>(this));
394
395       if (action == nullptr) {
396         mailbox = process->mailbox();
397         XBT_DEBUG("No, nothing in the small mailbox test the other one : %s", mailbox->get_cname());
398         action = mailbox->iprobe(0, &match_recv, static_cast<void*>(this));
399         if (action == nullptr) {
400           XBT_DEBUG("Still nothing, switch back to the small mailbox : %s", mailbox->get_cname());
401           mailbox = process->mailbox_small();
402         }
403       } else {
404         XBT_DEBUG("yes there was something for us in the large mailbox");
405       }
406     } else {
407       mailbox = process->mailbox_small();
408       XBT_DEBUG("Is there a corresponding send already posted the small mailbox?");
409       smx_activity_t action = mailbox->iprobe(0, &match_recv, static_cast<void*>(this));
410
411       if (action == nullptr) {
412         XBT_DEBUG("No, nothing in the permanent receive mailbox");
413         mailbox = process->mailbox();
414       } else {
415         XBT_DEBUG("yes there was something for us in the small mailbox");
416       }
417     }
418
419     // we make a copy here, as the size is modified by simix, and we may reuse the request in another receive later
420     real_size_=size_;
421     action_   = simcall_comm_irecv(
422         process->get_actor()->get_impl(), mailbox->get_impl(), buf_, &real_size_, &match_recv,
423         process->replaying() ? &smpi_comm_null_copy_buffer_callback : smpi_comm_copy_data_callback, this, -1.0);
424     XBT_DEBUG("recv simcall posted");
425
426     if (async_small_thresh != 0 || (flags_ & MPI_REQ_RMA) != 0)
427       mut->unlock();
428   } else { /* the RECV flag was not set, so this is a send */
429     simgrid::smpi::ActorExt* process = smpi_process_remote(simgrid::s4u::Actor::by_pid(dst_));
430     xbt_assert(process, "Actor pid=%d is gone??", dst_);
431     int rank = src_;
432     if (TRACE_smpi_view_internals()) {
433       TRACE_smpi_send(rank, rank, dst_, tag_, size_);
434     }
435     this->print_request("New send");
436
437     void* buf = buf_;
438     if ((flags_ & MPI_REQ_SSEND) == 0 &&
439         ((flags_ & MPI_REQ_RMA) != 0 || (flags_ & MPI_REQ_BSEND) != 0 ||
440          static_cast<int>(size_) < simgrid::config::get_value<int>("smpi/send-is-detached-thresh"))) {
441       void *oldbuf = nullptr;
442       detached_    = true;
443       XBT_DEBUG("Send request %p is detached", this);
444       this->ref();
445       if (not(old_type_->flags() & DT_FLAG_DERIVED)) {
446         oldbuf = buf_;
447         if (not process->replaying() && oldbuf != nullptr && size_ != 0) {
448           if ((smpi_privatize_global_variables != SmpiPrivStrategies::NONE) &&
449               (static_cast<char*>(buf_) >= smpi_data_exe_start) &&
450               (static_cast<char*>(buf_) < smpi_data_exe_start + smpi_data_exe_size)) {
451             XBT_DEBUG("Privatization : We are sending from a zone inside global memory. Switch data segment ");
452             smpi_switch_data_segment(simgrid::s4u::Actor::by_pid(src_));
453           }
454           //we need this temporary buffer even for bsend, as it will be released in the copy callback and we don't have a way to differentiate it
455           //so actually ... don't use manually attached buffer space.
456           buf = xbt_malloc(size_);
457           memcpy(buf,oldbuf,size_);
458           XBT_DEBUG("buf %p copied into %p",oldbuf,buf);
459         }
460       }
461     }
462
463     //if we are giving back the control to the user without waiting for completion, we have to inject timings
464     double sleeptime = 0.0;
465     if (detached_ || ((flags_ & (MPI_REQ_ISEND | MPI_REQ_SSEND)) != 0)) { // issend should be treated as isend
466       // isend and send timings may be different
467       sleeptime = ((flags_ & MPI_REQ_ISEND) != 0)
468                       ? simgrid::s4u::Actor::self()->get_host()->extension<simgrid::smpi::Host>()->oisend(size_)
469                       : simgrid::s4u::Actor::self()->get_host()->extension<simgrid::smpi::Host>()->osend(size_);
470     }
471
472     if(sleeptime > 0.0){
473       simgrid::s4u::this_actor::sleep_for(sleeptime);
474       XBT_DEBUG("sending size of %zu : sleep %f ", size_, sleeptime);
475     }
476
477     int async_small_thresh = simgrid::config::get_value<int>("smpi/async-small-thresh");
478
479     simgrid::s4u::MutexPtr mut = process->mailboxes_mutex();
480
481     if (async_small_thresh != 0 || (flags_ & MPI_REQ_RMA) != 0)
482       mut->lock();
483
484     if (not(async_small_thresh != 0 || (flags_ & MPI_REQ_RMA) != 0)) {
485       mailbox = process->mailbox();
486     } else if (((flags_ & MPI_REQ_RMA) != 0) || static_cast<int>(size_) < async_small_thresh) { // eager mode
487       mailbox = process->mailbox();
488       XBT_DEBUG("Is there a corresponding recv already posted in the large mailbox %s?", mailbox->get_cname());
489       smx_activity_t action = mailbox->iprobe(1, &match_send, static_cast<void*>(this));
490       if (action == nullptr) {
491         if ((flags_ & MPI_REQ_SSEND) == 0) {
492           mailbox = process->mailbox_small();
493           XBT_DEBUG("No, nothing in the large mailbox, message is to be sent on the small one %s",
494                     mailbox->get_cname());
495         } else {
496           mailbox = process->mailbox_small();
497           XBT_DEBUG("SSEND : Is there a corresponding recv already posted in the small mailbox %s?",
498                     mailbox->get_cname());
499           action = mailbox->iprobe(1, &match_send, static_cast<void*>(this));
500           if (action == nullptr) {
501             XBT_DEBUG("No, we are first, send to large mailbox");
502             mailbox = process->mailbox();
503           }
504         }
505       } else {
506         XBT_DEBUG("Yes there was something for us in the large mailbox");
507       }
508     } else {
509       mailbox = process->mailbox();
510       XBT_DEBUG("Send request %p is in the large mailbox %s (buf: %p)", this, mailbox->get_cname(), buf_);
511     }
512
513     // we make a copy here, as the size is modified by simix, and we may reuse the request in another receive later
514     real_size_=size_;
515     action_   = simcall_comm_isend(
516         simgrid::s4u::Actor::by_pid(src_)->get_impl(), mailbox->get_impl(), size_, -1.0, buf, real_size_, &match_send,
517         &xbt_free_f, // how to free the userdata if a detached send fails
518         process->replaying() ? &smpi_comm_null_copy_buffer_callback : smpi_comm_copy_data_callback, this,
519         // detach if msg size < eager/rdv switch limit
520         detached_);
521     XBT_DEBUG("send simcall posted");
522
523     /* FIXME: detached sends are not traceable (action_ == nullptr) */
524     if (action_ != nullptr) {
525       boost::static_pointer_cast<kernel::activity::CommImpl>(action_)->set_tracing_category(
526           smpi_process()->get_tracing_category());
527     }
528
529     if (async_small_thresh != 0 || ((flags_ & MPI_REQ_RMA) != 0))
530       mut->unlock();
531   }
532 }
533
534 void Request::startall(int count, MPI_Request * requests)
535 {
536   if(requests== nullptr)
537     return;
538
539   for(int i = 0; i < count; i++) {
540     requests[i]->start();
541   }
542 }
543
544 void Request::cancel()
545 {
546   if(cancelled_!=-1)
547     cancelled_=1;
548   if (this->action_ != nullptr)
549     (boost::static_pointer_cast<simgrid::kernel::activity::CommImpl>(this->action_))->cancel();
550 }
551
552 int Request::test(MPI_Request * request, MPI_Status * status, int* flag) {
553   //assume that request is not MPI_REQUEST_NULL (filtered in PMPI_Test or testall before)
554   // to avoid deadlocks if used as a break condition, such as
555   //     while (MPI_Test(request, flag, status) && flag) dostuff...
556   // because the time will not normally advance when only calls to MPI_Test are made -> deadlock
557   // multiplier to the sleeptime, to increase speed of execution, each failed test will increase it
558   static int nsleeps = 1;
559   int ret = MPI_SUCCESS;
560   
561   // Are we testing a request meant for non blocking collectives ?
562   // If so, test all the subrequests.
563   if ((*request)->nbc_requests_size_>0){
564     ret = testall((*request)->nbc_requests_size_, (*request)->nbc_requests_, flag, MPI_STATUSES_IGNORE);
565     if(*flag){
566       delete[] (*request)->nbc_requests_;
567       (*request)->nbc_requests_size_=0;
568       unref(request);
569     }
570     return ret;
571   }
572   
573   if(smpi_test_sleep > 0)
574     simgrid::s4u::this_actor::sleep_for(nsleeps * smpi_test_sleep);
575
576   Status::empty(status);
577   *flag = 1;
578   if (((*request)->flags_ & MPI_REQ_PREPARED) == 0) {
579     if ((*request)->action_ != nullptr && (*request)->cancelled_ != 1){
580       try{
581         *flag = simcall_comm_test((*request)->action_);
582       } catch (const Exception&) {
583         *flag = 0;
584         return ret;
585       }
586     }
587     if (*request != MPI_REQUEST_NULL && 
588         ((*request)->flags_ & MPI_REQ_GENERALIZED)
589         && !((*request)->flags_ & MPI_REQ_COMPLETE)) 
590       *flag=0;
591     if (*flag) {
592       finish_wait(request,status);
593       if (*request != MPI_REQUEST_NULL && ((*request)->flags_ & MPI_REQ_GENERALIZED)){
594         MPI_Status* mystatus;
595         if(status==MPI_STATUS_IGNORE){
596           mystatus=new MPI_Status();
597           Status::empty(mystatus);
598         }else{
599           mystatus=status;
600         }
601         ret = ((*request)->generalized_funcs)->query_fn(((*request)->generalized_funcs)->extra_state, mystatus);
602         if(status==MPI_STATUS_IGNORE) 
603           delete mystatus;
604       }
605       nsleeps=1;//reset the number of sleeps we will do next time
606       if (*request != MPI_REQUEST_NULL && ((*request)->flags_ & MPI_REQ_PERSISTENT) == 0)
607         *request = MPI_REQUEST_NULL;
608     } else if (simgrid::config::get_value<bool>("smpi/grow-injected-times")) {
609       nsleeps++;
610     }
611   }
612   return ret;
613 }
614
615 int Request::testsome(int incount, MPI_Request requests[], int *count, int *indices, MPI_Status status[])
616 {
617   int error=0;
618   int count_dead = 0;
619   int flag = 0;
620   MPI_Status stat;
621   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
622
623   *count = 0;
624   for (int i = 0; i < incount; i++) {
625     if (requests[i] != MPI_REQUEST_NULL && not (requests[i]->flags_ & MPI_REQ_FINISHED)) {
626       int ret = test(&requests[i], pstat, &flag);
627       if(ret!=MPI_SUCCESS)
628         error = 1;
629       if(flag) {
630         indices[*count] = i;
631         if (status != MPI_STATUSES_IGNORE)
632           status[*count] = *pstat;
633         (*count)++;
634         if ((requests[i] != MPI_REQUEST_NULL) && (requests[i]->flags_ & MPI_REQ_NON_PERSISTENT))
635           requests[i] = MPI_REQUEST_NULL;
636       }
637     } else {
638       count_dead++;
639     }
640   }
641   if(count_dead==incount)*count=MPI_UNDEFINED;
642   if(error!=0)
643     return MPI_ERR_IN_STATUS;
644   else
645     return MPI_SUCCESS;
646 }
647
648 int Request::testany(int count, MPI_Request requests[], int *index, int* flag, MPI_Status * status)
649 {
650   std::vector<simgrid::kernel::activity::CommImpl*> comms;
651   comms.reserve(count);
652
653   int i;
654   *flag = 0;
655   int ret = MPI_SUCCESS;
656   *index = MPI_UNDEFINED;
657
658   std::vector<int> map; /** Maps all matching comms back to their location in requests **/
659   for(i = 0; i < count; i++) {
660     if ((requests[i] != MPI_REQUEST_NULL) && requests[i]->action_ && not(requests[i]->flags_ & MPI_REQ_PREPARED)) {
661       comms.push_back(static_cast<simgrid::kernel::activity::CommImpl*>(requests[i]->action_.get()));
662       map.push_back(i);
663     }
664   }
665   if (not map.empty()) {
666     //multiplier to the sleeptime, to increase speed of execution, each failed testany will increase it
667     static int nsleeps = 1;
668     if(smpi_test_sleep > 0)
669       simgrid::s4u::this_actor::sleep_for(nsleeps * smpi_test_sleep);
670     try{
671       i = simcall_comm_testany(comms.data(), comms.size()); // The i-th element in comms matches!
672     } catch (const Exception&) {
673       XBT_DEBUG("Exception in testany");
674       return 0;
675     }
676     
677     if (i != -1) { // -1 is not MPI_UNDEFINED but a SIMIX return code. (nothing matches)
678       *index = map[i];
679       if (requests[*index] != MPI_REQUEST_NULL && 
680           (requests[*index]->flags_ & MPI_REQ_GENERALIZED)
681           && !(requests[*index]->flags_ & MPI_REQ_COMPLETE)) {
682         *flag=0;
683       } else {
684         finish_wait(&requests[*index],status);
685       if (requests[*index] != MPI_REQUEST_NULL && (requests[*index]->flags_ & MPI_REQ_GENERALIZED)){
686         MPI_Status* mystatus;
687         if(status==MPI_STATUS_IGNORE){
688           mystatus=new MPI_Status();
689           Status::empty(mystatus);
690         }else{
691           mystatus=status;
692         }
693         ret=(requests[*index]->generalized_funcs)->query_fn((requests[*index]->generalized_funcs)->extra_state, mystatus);
694         if(status==MPI_STATUS_IGNORE) 
695           delete mystatus;
696       }
697
698         if (requests[*index] != MPI_REQUEST_NULL && (requests[*index]->flags_ & MPI_REQ_NON_PERSISTENT)) 
699           requests[*index] = MPI_REQUEST_NULL;
700         XBT_DEBUG("Testany - returning with index %d", *index);
701         *flag=1;
702       }
703       nsleeps = 1;
704     } else {
705       nsleeps++;
706     }
707   } else {
708       XBT_DEBUG("Testany on inactive handles, returning flag=1 but empty status");
709       //all requests are null or inactive, return true
710       *flag = 1;
711       *index = MPI_UNDEFINED;
712       Status::empty(status);
713   }
714
715   return ret;
716 }
717
718 int Request::testall(int count, MPI_Request requests[], int* outflag, MPI_Status status[])
719 {
720   MPI_Status stat;
721   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
722   int flag;
723   int error = 0;
724   *outflag = 1;
725   for(int i=0; i<count; i++){
726     if (requests[i] != MPI_REQUEST_NULL && not(requests[i]->flags_ & MPI_REQ_PREPARED)) {
727       int ret = test(&requests[i], pstat, &flag);
728       if (flag){
729         flag=0;
730         requests[i]=MPI_REQUEST_NULL;
731       }else{
732         *outflag=0;
733       }
734       if (ret != MPI_SUCCESS) 
735         error = 1;
736     }else{
737       Status::empty(pstat);
738     }
739     if(status != MPI_STATUSES_IGNORE) {
740       status[i] = *pstat;
741     }
742   }
743   if(error==1) 
744     return MPI_ERR_IN_STATUS;
745   else 
746     return MPI_SUCCESS;
747 }
748
749 void Request::probe(int source, int tag, MPI_Comm comm, MPI_Status* status){
750   int flag=0;
751   //FIXME find another way to avoid busy waiting ?
752   // the issue here is that we have to wait on a nonexistent comm
753   while(flag==0){
754     iprobe(source, tag, comm, &flag, status);
755     XBT_DEBUG("Busy Waiting on probing : %d", flag);
756   }
757 }
758
759 void Request::iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status){
760   // to avoid deadlock, we have to sleep some time here, or the timer won't advance and we will only do iprobe simcalls
761   // especially when used as a break condition, such as while (MPI_Iprobe(...)) dostuff...
762   // nsleeps is a multiplier to the sleeptime, to increase speed of execution, each failed iprobe will increase it
763   // This can speed up the execution of certain applications by an order of magnitude, such as HPL
764   static int nsleeps = 1;
765   double speed        = s4u::this_actor::get_host()->get_speed();
766   double maxrate      = simgrid::config::get_value<double>("smpi/iprobe-cpu-usage");
767   MPI_Request request = new Request(nullptr, 0, MPI_CHAR,
768                                     source == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : comm->group()->actor(source)->get_pid(),
769                                     simgrid::s4u::this_actor::get_pid(), tag, comm, MPI_REQ_PERSISTENT | MPI_REQ_RECV);
770   if (smpi_iprobe_sleep > 0) {
771     /** Compute the number of flops we will sleep **/
772     s4u::this_actor::exec_init(/*nsleeps: See comment above */ nsleeps *
773                                /*(seconds * flop/s -> total flops)*/ smpi_iprobe_sleep * speed * maxrate)
774         ->set_name("iprobe")
775         /* Not the entire CPU can be used when iprobing: This is important for
776          * the energy consumption caused by polling with iprobes. 
777          * Note also that the number of flops that was
778          * computed above contains a maxrate factor and is hence reduced (maxrate < 1)
779          */
780         ->set_bound(maxrate*speed)
781         ->start()
782         ->wait();
783   }
784   // behave like a receive, but don't do it
785   s4u::Mailbox* mailbox;
786
787   request->print_request("New iprobe");
788   // We have to test both mailboxes as we don't know if we will receive one or another
789   if (simgrid::config::get_value<int>("smpi/async-small-thresh") > 0) {
790     mailbox = smpi_process()->mailbox_small();
791     XBT_DEBUG("Trying to probe the perm recv mailbox");
792     request->action_ = mailbox->iprobe(0, &match_recv, static_cast<void*>(request));
793   }
794
795   if (request->action_ == nullptr){
796     mailbox = smpi_process()->mailbox();
797     XBT_DEBUG("trying to probe the other mailbox");
798     request->action_ = mailbox->iprobe(0, &match_recv, static_cast<void*>(request));
799   }
800
801   if (request->action_ != nullptr){
802     kernel::activity::CommImplPtr sync_comm = boost::static_pointer_cast<kernel::activity::CommImpl>(request->action_);
803     MPI_Request req                         = static_cast<MPI_Request>(sync_comm->src_data_);
804     *flag = 1;
805     if (status != MPI_STATUS_IGNORE && (req->flags_ & MPI_REQ_PREPARED) == 0) {
806       status->MPI_SOURCE = comm->group()->rank(req->src_);
807       status->MPI_TAG    = req->tag_;
808       status->MPI_ERROR  = MPI_SUCCESS;
809       status->count      = req->real_size_;
810     }
811     nsleeps = 1;//reset the number of sleeps we will do next time
812   }
813   else {
814     *flag = 0;
815     if (simgrid::config::get_value<bool>("smpi/grow-injected-times"))
816       nsleeps++;
817   }
818   unref(&request);
819   xbt_assert(request == MPI_REQUEST_NULL);
820 }
821
822 void Request::finish_wait(MPI_Request* request, MPI_Status * status)
823 {
824   MPI_Request req = *request;
825   Status::empty(status);
826   
827   if (req->cancelled_==1){
828     if (status!=MPI_STATUS_IGNORE)
829       status->cancelled=1;
830     if(req->detached_sender_ != nullptr)
831       unref(&(req->detached_sender_));
832     unref(request);
833     return;
834   }
835
836   if ((req->flags_ & (MPI_REQ_PREPARED | MPI_REQ_GENERALIZED | MPI_REQ_FINISHED)) == 0) {
837     if(status != MPI_STATUS_IGNORE) {
838       int src = req->src_ == MPI_ANY_SOURCE ? req->real_src_ : req->src_;
839       status->MPI_SOURCE = req->comm_->group()->rank(src);
840       status->MPI_TAG = req->tag_ == MPI_ANY_TAG ? req->real_tag_ : req->tag_;
841       status->MPI_ERROR  = req->truncated_ ? MPI_ERR_TRUNCATE : MPI_SUCCESS;
842       // this handles the case were size in receive differs from size in send
843       status->count = req->real_size_;
844     }
845     //detached send will be finished at the other end
846     if (not(req->detached_ && ((req->flags_ & MPI_REQ_SEND) != 0))) {
847       req->print_request("Finishing");
848       MPI_Datatype datatype = req->old_type_;
849
850       // FIXME Handle the case of a partial shared malloc.
851       if (((req->flags_ & MPI_REQ_ACCUMULATE) != 0) ||
852           (datatype->flags() & DT_FLAG_DERIVED)) { // && (not smpi_is_shared(req->old_buf_))){
853
854         if (not smpi_process()->replaying() && smpi_privatize_global_variables != SmpiPrivStrategies::NONE &&
855             static_cast<char*>(req->old_buf_) >= smpi_data_exe_start &&
856             static_cast<char*>(req->old_buf_) < smpi_data_exe_start + smpi_data_exe_size) {
857           XBT_VERB("Privatization : We are unserializing to a zone in global memory  Switch data segment ");
858           smpi_switch_data_segment(simgrid::s4u::Actor::self());
859         }
860
861         if(datatype->flags() & DT_FLAG_DERIVED){
862           // This part handles the problem of non-contiguous memory the unserialization at the reception
863           if ((req->flags_ & MPI_REQ_RECV) && datatype->size() != 0)
864             datatype->unserialize(req->buf_, req->old_buf_, req->real_size_/datatype->size() , req->op_);
865           xbt_free(req->buf_);
866         } else if (req->flags_ & MPI_REQ_RECV) { // apply op on contiguous buffer for accumulate
867           if (datatype->size() != 0) {
868             int n = req->real_size_ / datatype->size();
869             req->op_->apply(req->buf_, req->old_buf_, &n, datatype);
870           }
871           xbt_free(req->buf_);
872         }
873       }
874     }
875   }
876
877   if (TRACE_smpi_view_internals() && ((req->flags_ & MPI_REQ_RECV) != 0)) {
878     int rank       = simgrid::s4u::this_actor::get_pid();
879     int src_traced = (req->src_ == MPI_ANY_SOURCE ? req->real_src_ : req->src_);
880     TRACE_smpi_recv(src_traced, rank,req->tag_);
881   }
882   if(req->detached_sender_ != nullptr){
883     //integrate pseudo-timing for buffering of small messages, do not bother to execute the simcall if 0
884     double sleeptime =
885         simgrid::s4u::Actor::self()->get_host()->extension<simgrid::smpi::Host>()->orecv(req->real_size());
886     if (sleeptime > 0.0) {
887       simgrid::s4u::this_actor::sleep_for(sleeptime);
888       XBT_DEBUG("receiving size of %zu : sleep %f ", req->real_size_, sleeptime);
889     }
890     unref(&(req->detached_sender_));
891   }
892   if (req->flags_ & MPI_REQ_PERSISTENT)
893     req->action_ = nullptr;
894   req->flags_ |= MPI_REQ_FINISHED;
895   unref(request);
896 }
897
898 int Request::wait(MPI_Request * request, MPI_Status * status)
899 {
900   int ret=MPI_SUCCESS;
901   // Are we waiting on a request meant for non blocking collectives ?
902   // If so, wait for all the subrequests.
903   if ((*request)->nbc_requests_size_>0){
904     ret = waitall((*request)->nbc_requests_size_, (*request)->nbc_requests_, MPI_STATUSES_IGNORE);
905     for (int i = 0; i < (*request)->nbc_requests_size_; i++) {
906       if((*request)->buf_!=nullptr && (*request)->nbc_requests_[i]!=MPI_REQUEST_NULL){//reduce case
907         void * buf=(*request)->nbc_requests_[i]->buf_;
908         if((*request)->old_type_->flags() & DT_FLAG_DERIVED)
909           buf=(*request)->nbc_requests_[i]->old_buf_;
910         if((*request)->nbc_requests_[i]->flags_ & MPI_REQ_RECV ){
911           if((*request)->op_!=MPI_OP_NULL){
912             int count=(*request)->size_/ (*request)->old_type_->size();
913             (*request)->op_->apply(buf, (*request)->buf_, &count, (*request)->old_type_);
914           }
915           smpi_free_tmp_buffer(static_cast<unsigned char*>(buf));
916         }
917       }
918       if((*request)->nbc_requests_[i]!=MPI_REQUEST_NULL)
919         Request::unref(&((*request)->nbc_requests_[i]));
920     }
921     delete[] (*request)->nbc_requests_;
922     (*request)->nbc_requests_size_=0;
923     unref(request);
924     (*request)=MPI_REQUEST_NULL;
925     return ret;
926   }
927
928   (*request)->print_request("Waiting");
929   if ((*request)->flags_ & MPI_REQ_PREPARED) {
930     Status::empty(status);
931     return ret;
932   }
933
934   if ((*request)->action_ != nullptr){
935       try{
936         // this is not a detached send
937         simcall_comm_wait((*request)->action_, -1.0);
938       } catch (const Exception&) {
939         XBT_VERB("Request cancelled");
940       }
941   }
942
943   if (*request != MPI_REQUEST_NULL && ((*request)->flags_ & MPI_REQ_GENERALIZED)){
944     MPI_Status* mystatus;
945     if(!((*request)->flags_ & MPI_REQ_COMPLETE)){
946       ((*request)->generalized_funcs)->mutex->lock();
947       ((*request)->generalized_funcs)->cond->wait(((*request)->generalized_funcs)->mutex);
948       ((*request)->generalized_funcs)->mutex->unlock();
949       }
950     if(status==MPI_STATUS_IGNORE){
951       mystatus=new MPI_Status();
952       Status::empty(mystatus);
953     }else{
954       mystatus=status;
955     }
956     ret = ((*request)->generalized_funcs)->query_fn(((*request)->generalized_funcs)->extra_state, mystatus);
957     if(status==MPI_STATUS_IGNORE) 
958       delete mystatus;
959   }
960
961   finish_wait(request,status);
962   if (*request != MPI_REQUEST_NULL && (((*request)->flags_ & MPI_REQ_NON_PERSISTENT) != 0))
963     *request = MPI_REQUEST_NULL;
964   return ret;
965 }
966
967 int Request::waitany(int count, MPI_Request requests[], MPI_Status * status)
968 {
969   std::vector<simgrid::kernel::activity::CommImpl*> comms;
970   comms.reserve(count);
971   int index = MPI_UNDEFINED;
972
973   if(count > 0) {
974     // Wait for a request to complete
975     std::vector<int> map;
976     XBT_DEBUG("Wait for one of %d", count);
977     for(int i = 0; i < count; i++) {
978       if (requests[i] != MPI_REQUEST_NULL && not(requests[i]->flags_ & MPI_REQ_PREPARED) &&
979           not(requests[i]->flags_ & MPI_REQ_FINISHED)) {
980         if (requests[i]->action_ != nullptr) {
981           XBT_DEBUG("Waiting any %p ", requests[i]);
982           comms.push_back(static_cast<simgrid::kernel::activity::CommImpl*>(requests[i]->action_.get()));
983           map.push_back(i);
984         } else {
985           // This is a finished detached request, let's return this one
986           comms.clear(); // so we free don't do the waitany call
987           index = i;
988           finish_wait(&requests[i], status); // cleanup if refcount = 0
989           if (requests[i] != MPI_REQUEST_NULL && (requests[i]->flags_ & MPI_REQ_NON_PERSISTENT))
990             requests[i] = MPI_REQUEST_NULL; // set to null
991           break;
992         }
993       }
994     }
995     if (not comms.empty()) {
996       XBT_DEBUG("Enter waitany for %zu comms", comms.size());
997       int i=MPI_UNDEFINED;
998       try{
999         // this is not a detached send
1000         i = simcall_comm_waitany(comms.data(), comms.size(), -1);
1001       } catch (const Exception&) {
1002         XBT_INFO("request %d cancelled ", i);
1003         return i;
1004       }
1005
1006       // not MPI_UNDEFINED, as this is a simix return code
1007       if (i != -1) {
1008         index = map[i];
1009         //in case of an accumulate, we have to wait the end of all requests to apply the operation, ordered correctly.
1010         if ((requests[index] == MPI_REQUEST_NULL) ||
1011             (not((requests[index]->flags_ & MPI_REQ_ACCUMULATE) && (requests[index]->flags_ & MPI_REQ_RECV)))) {
1012           finish_wait(&requests[index],status);
1013           if (requests[index] != MPI_REQUEST_NULL && (requests[index]->flags_ & MPI_REQ_NON_PERSISTENT))
1014             requests[index] = MPI_REQUEST_NULL;
1015         }
1016       }
1017     }
1018   }
1019
1020   if (index==MPI_UNDEFINED)
1021     Status::empty(status);
1022
1023   return index;
1024 }
1025
1026 static int sort_accumulates(MPI_Request a, MPI_Request b)
1027 {
1028   return (a->tag() > b->tag());
1029 }
1030
1031 int Request::waitall(int count, MPI_Request requests[], MPI_Status status[])
1032 {
1033   std::vector<MPI_Request> accumulates;
1034   int index;
1035   MPI_Status stat;
1036   MPI_Status *pstat = (status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat);
1037   int retvalue = MPI_SUCCESS;
1038   //tag invalid requests in the set
1039   if (status != MPI_STATUSES_IGNORE) {
1040     for (int c = 0; c < count; c++) {
1041       if (requests[c] == MPI_REQUEST_NULL || requests[c]->dst_ == MPI_PROC_NULL ||
1042           (requests[c]->flags_ & MPI_REQ_PREPARED)) {
1043         Status::empty(&status[c]);
1044       } else if (requests[c]->src_ == MPI_PROC_NULL) {
1045         Status::empty(&status[c]);
1046         status[c].MPI_SOURCE = MPI_PROC_NULL;
1047       }
1048     }
1049   }
1050   for (int c = 0; c < count; c++) {
1051     if (MC_is_active() || MC_record_replay_is_active()) {
1052       wait(&requests[c],pstat);
1053       index = c;
1054     } else {
1055       index = waitany(count, (MPI_Request*)requests, pstat);
1056       
1057       if (index == MPI_UNDEFINED)
1058         break;
1059
1060       if (requests[index] != MPI_REQUEST_NULL && (requests[index]->flags_ & MPI_REQ_RECV) &&
1061           (requests[index]->flags_ & MPI_REQ_ACCUMULATE))
1062         accumulates.push_back(requests[index]);
1063       if (requests[index] != MPI_REQUEST_NULL && (requests[index]->flags_ & MPI_REQ_NON_PERSISTENT))
1064         requests[index] = MPI_REQUEST_NULL;
1065     }
1066     if (status != MPI_STATUSES_IGNORE) {
1067       status[index] = *pstat;
1068       if (status[index].MPI_ERROR == MPI_ERR_TRUNCATE)
1069         retvalue = MPI_ERR_IN_STATUS;
1070     }
1071   }
1072
1073   if (not accumulates.empty()) {
1074     std::sort(accumulates.begin(), accumulates.end(), sort_accumulates);
1075     for (auto& req : accumulates) {
1076       finish_wait(&req, status);
1077     }
1078   }
1079
1080   return retvalue;
1081 }
1082
1083 int Request::waitsome(int incount, MPI_Request requests[], int *indices, MPI_Status status[])
1084 {
1085   int count = 0;
1086   int flag = 0;
1087   int index = 0;
1088   MPI_Status stat;
1089   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
1090   index = waitany(incount, (MPI_Request*)requests, pstat);
1091   if(index==MPI_UNDEFINED) return MPI_UNDEFINED;
1092   if(status != MPI_STATUSES_IGNORE) {
1093     status[count] = *pstat;
1094   }
1095   indices[count] = index;
1096   count++;
1097   for (int i = 0; i < incount; i++) {
1098     if (i!=index && requests[i] != MPI_REQUEST_NULL 
1099         && not(requests[i]->flags_ & MPI_REQ_FINISHED)) {
1100       test(&requests[i], pstat,&flag);
1101       if (flag==1){
1102         indices[count] = i;
1103         if(status != MPI_STATUSES_IGNORE) {
1104           status[count] = *pstat;
1105         }
1106         if (requests[i] != MPI_REQUEST_NULL && (requests[i]->flags_ & MPI_REQ_NON_PERSISTENT))
1107           requests[i]=MPI_REQUEST_NULL;
1108         count++;
1109       }
1110     }
1111   }
1112   return count;
1113 }
1114
1115 MPI_Request Request::f2c(int id) {
1116   char key[KEY_SIZE];
1117   if(id==MPI_FORTRAN_REQUEST_NULL)
1118     return static_cast<MPI_Request>(MPI_REQUEST_NULL);
1119   return static_cast<MPI_Request>(F2C::f2c_lookup()->at(get_key(key,id)));
1120 }
1121
1122 void Request::free_f(int id)
1123 {
1124   if (id != MPI_FORTRAN_REQUEST_NULL) {
1125     char key[KEY_SIZE];
1126     F2C::f2c_lookup()->erase(get_key(key, id));
1127   }
1128 }
1129
1130 int Request::get_status(MPI_Request req, int* flag, MPI_Status * status){
1131   *flag=0;
1132
1133   if(req != MPI_REQUEST_NULL && req->action_ != nullptr) {
1134     req->iprobe(req->src_, req->tag_, req->comm_, flag, status);
1135     if(*flag)
1136       return MPI_SUCCESS;
1137   }
1138   if (req != MPI_REQUEST_NULL && 
1139      (req->flags_ & MPI_REQ_GENERALIZED)
1140      && !(req->flags_ & MPI_REQ_COMPLETE)) {
1141      *flag=0;
1142     return MPI_SUCCESS;
1143   }
1144
1145   *flag=1;
1146   if(req != MPI_REQUEST_NULL &&
1147      status != MPI_STATUS_IGNORE) {
1148     int src = req->src_ == MPI_ANY_SOURCE ? req->real_src_ : req->src_;
1149     status->MPI_SOURCE = req->comm_->group()->rank(src);
1150     status->MPI_TAG = req->tag_ == MPI_ANY_TAG ? req->real_tag_ : req->tag_;
1151     status->MPI_ERROR = req->truncated_ ? MPI_ERR_TRUNCATE : MPI_SUCCESS;
1152     status->count = req->real_size_;
1153   }
1154   return MPI_SUCCESS;
1155 }
1156
1157 int Request::grequest_start( MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn, MPI_Grequest_cancel_function *cancel_fn, void *extra_state, MPI_Request *request){
1158
1159   *request = new Request();
1160   (*request)->flags_ |= MPI_REQ_GENERALIZED;
1161   (*request)->flags_ |= MPI_REQ_PERSISTENT;
1162   (*request)->refcount_ = 1;
1163   ((*request)->generalized_funcs) = new s_smpi_mpi_generalized_request_funcs_t;
1164   ((*request)->generalized_funcs)->query_fn=query_fn;
1165   ((*request)->generalized_funcs)->free_fn=free_fn;
1166   ((*request)->generalized_funcs)->cancel_fn=cancel_fn;
1167   ((*request)->generalized_funcs)->extra_state=extra_state;
1168   ((*request)->generalized_funcs)->cond = simgrid::s4u::ConditionVariable::create();
1169   ((*request)->generalized_funcs)->mutex = simgrid::s4u::Mutex::create();
1170   return MPI_SUCCESS;
1171 }
1172
1173 int Request::grequest_complete( MPI_Request request){
1174   if ((!(request->flags_ & MPI_REQ_GENERALIZED)) || request->generalized_funcs->mutex==NULL) 
1175     return MPI_ERR_REQUEST;
1176   request->generalized_funcs->mutex->lock();
1177   request->flags_ |= MPI_REQ_COMPLETE; // in case wait would be called after complete
1178   request->generalized_funcs->cond->notify_one();
1179   request->generalized_funcs->mutex->unlock();
1180   return MPI_SUCCESS;
1181 }
1182
1183 void Request::set_nbc_requests(MPI_Request* reqs, int size){
1184   nbc_requests_size_ = size;
1185   if (size > 0) {
1186     nbc_requests_ = reqs;
1187   } else {
1188     delete[] reqs;
1189     nbc_requests_ = nullptr;
1190   }
1191 }
1192
1193 int Request::get_nbc_requests_size(){
1194   return nbc_requests_size_;
1195 }
1196
1197 MPI_Request* Request::get_nbc_requests(){
1198   return nbc_requests_;
1199 }
1200
1201 }
1202 }