Logo AND Algorithmique Numérique Distribuée

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