Logo AND Algorithmique Numérique Distribuée

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