Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #256 from Flamefire/master
[simgrid.git] / src / smpi / bindings / smpi_pmpi_request.cpp
1 /* Copyright (c) 2007-2018. 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 "private.hpp"
7 #include "smpi_comm.hpp"
8 #include "smpi_datatype.hpp"
9 #include "smpi_process.hpp"
10 #include "smpi_request.hpp"
11
12 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi);
13
14 static int getPid(MPI_Comm, int);
15 static int getPid(MPI_Comm comm, int id)
16 {
17   simgrid::s4u::ActorPtr actor = comm->group()->actor(id);
18   return (actor == nullptr) ? MPI_UNDEFINED : actor->getPid();
19 }
20
21 /* PMPI User level calls */
22 extern "C" { // Obviously, the C MPI interface should use the C linkage
23
24 int PMPI_Send_init(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request * request)
25 {
26   int retval = 0;
27
28   smpi_bench_end();
29   if (request == nullptr) {
30     retval = MPI_ERR_ARG;
31   } else if (comm == MPI_COMM_NULL) {
32     retval = MPI_ERR_COMM;
33   } else if (not datatype->is_valid()) {
34     retval = MPI_ERR_TYPE;
35   } else if (dst == MPI_PROC_NULL) {
36     retval = MPI_SUCCESS;
37   } else {
38     *request = simgrid::smpi::Request::send_init(buf, count, datatype, dst, tag, comm);
39     retval   = MPI_SUCCESS;
40   }
41   smpi_bench_begin();
42   if (retval != MPI_SUCCESS && request != nullptr)
43     *request = MPI_REQUEST_NULL;
44   return retval;
45 }
46
47 int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Request * request)
48 {
49   int retval = 0;
50
51   smpi_bench_end();
52   if (request == nullptr) {
53     retval = MPI_ERR_ARG;
54   } else if (comm == MPI_COMM_NULL) {
55     retval = MPI_ERR_COMM;
56   } else if (not datatype->is_valid()) {
57     retval = MPI_ERR_TYPE;
58   } else if (src == MPI_PROC_NULL) {
59     retval = MPI_SUCCESS;
60   } else {
61     *request = simgrid::smpi::Request::recv_init(buf, count, datatype, src, tag, comm);
62     retval = MPI_SUCCESS;
63   }
64   smpi_bench_begin();
65   if (retval != MPI_SUCCESS && request != nullptr)
66     *request = MPI_REQUEST_NULL;
67   return retval;
68 }
69
70 int PMPI_Ssend_init(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request* request)
71 {
72   int retval = 0;
73
74   smpi_bench_end();
75   if (request == nullptr) {
76     retval = MPI_ERR_ARG;
77   } else if (comm == MPI_COMM_NULL) {
78     retval = MPI_ERR_COMM;
79   } else if (not datatype->is_valid()) {
80     retval = MPI_ERR_TYPE;
81   } else if (dst == MPI_PROC_NULL) {
82     retval = MPI_SUCCESS;
83   } else {
84     *request = simgrid::smpi::Request::ssend_init(buf, count, datatype, dst, tag, comm);
85     retval = MPI_SUCCESS;
86   }
87   smpi_bench_begin();
88   if (retval != MPI_SUCCESS && request != nullptr)
89     *request = MPI_REQUEST_NULL;
90   return retval;
91 }
92
93 int PMPI_Start(MPI_Request * request)
94 {
95   int retval = 0;
96
97   smpi_bench_end();
98   if (request == nullptr || *request == MPI_REQUEST_NULL) {
99     retval = MPI_ERR_REQUEST;
100   } else {
101     (*request)->start();
102     retval = MPI_SUCCESS;
103   }
104   smpi_bench_begin();
105   return retval;
106 }
107
108 int PMPI_Startall(int count, MPI_Request * requests)
109 {
110   int retval;
111   smpi_bench_end();
112   if (requests == nullptr) {
113     retval = MPI_ERR_ARG;
114   } else {
115     retval = MPI_SUCCESS;
116     for (int i = 0; i < count; i++) {
117       if(requests[i] == MPI_REQUEST_NULL) {
118         retval = MPI_ERR_REQUEST;
119       }
120     }
121     if(retval != MPI_ERR_REQUEST) {
122       simgrid::smpi::Request::startall(count, requests);
123     }
124   }
125   smpi_bench_begin();
126   return retval;
127 }
128
129 int PMPI_Request_free(MPI_Request * request)
130 {
131   int retval = 0;
132
133   smpi_bench_end();
134   if (*request == MPI_REQUEST_NULL) {
135     retval = MPI_ERR_ARG;
136   } else {
137     simgrid::smpi::Request::unref(request);
138     retval = MPI_SUCCESS;
139   }
140   smpi_bench_begin();
141   return retval;
142 }
143
144 int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Request * request)
145 {
146   int retval = 0;
147
148   smpi_bench_end();
149
150   if (request == nullptr) {
151     retval = MPI_ERR_ARG;
152   } else if (comm == MPI_COMM_NULL) {
153     retval = MPI_ERR_COMM;
154   } else if (src == MPI_PROC_NULL) {
155     *request = MPI_REQUEST_NULL;
156     retval = MPI_SUCCESS;
157   } else if (src!=MPI_ANY_SOURCE && (src >= comm->group()->size() || src <0)){
158     retval = MPI_ERR_RANK;
159   } else if ((count < 0) || (buf==nullptr && count > 0)) {
160     retval = MPI_ERR_COUNT;
161   } else if (not datatype->is_valid()) {
162     retval = MPI_ERR_TYPE;
163   } else if(tag<0 && tag !=  MPI_ANY_TAG){
164     retval = MPI_ERR_TAG;
165   } else {
166
167     int my_proc_id = simgrid::s4u::Actor::self()->getPid();
168
169     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
170                        new simgrid::instr::Pt2PtTIData("Irecv", src,
171                                                        datatype->is_replayable() ? count : count * datatype->size(),
172                                                        encode_datatype(datatype)));
173
174     *request = simgrid::smpi::Request::irecv(buf, count, datatype, src, tag, comm);
175     retval = MPI_SUCCESS;
176
177     TRACE_smpi_comm_out(my_proc_id);
178   }
179
180   smpi_bench_begin();
181   if (retval != MPI_SUCCESS && request != nullptr)
182     *request = MPI_REQUEST_NULL;
183   return retval;
184 }
185
186
187 int PMPI_Isend(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request * request)
188 {
189   int retval = 0;
190
191   smpi_bench_end();
192   if (request == nullptr) {
193     retval = MPI_ERR_ARG;
194   } else if (comm == MPI_COMM_NULL) {
195     retval = MPI_ERR_COMM;
196   } else if (dst == MPI_PROC_NULL) {
197     *request = MPI_REQUEST_NULL;
198     retval = MPI_SUCCESS;
199   } else if (dst >= comm->group()->size() || dst <0){
200     retval = MPI_ERR_RANK;
201   } else if ((count < 0) || (buf==nullptr && count > 0)) {
202     retval = MPI_ERR_COUNT;
203   } else if (not datatype->is_valid()) {
204     retval = MPI_ERR_TYPE;
205   } else if(tag<0 && tag !=  MPI_ANY_TAG){
206     retval = MPI_ERR_TAG;
207   } else {
208     int my_proc_id = simgrid::s4u::Actor::self()->getPid();
209     int trace_dst = getPid(comm, dst);
210     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
211                        new simgrid::instr::Pt2PtTIData("Isend", dst,
212                                                        datatype->is_replayable() ? count : count * datatype->size(),
213                                                        encode_datatype(datatype)));
214
215     TRACE_smpi_send(my_proc_id, my_proc_id, trace_dst, tag, count * datatype->size());
216
217     *request = simgrid::smpi::Request::isend(buf, count, datatype, dst, tag, comm);
218     retval = MPI_SUCCESS;
219
220     TRACE_smpi_comm_out(my_proc_id);
221   }
222
223   smpi_bench_begin();
224   if (retval != MPI_SUCCESS && request!=nullptr)
225     *request = MPI_REQUEST_NULL;
226   return retval;
227 }
228
229 int PMPI_Issend(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request* request)
230 {
231   int retval = 0;
232
233   smpi_bench_end();
234   if (request == nullptr) {
235     retval = MPI_ERR_ARG;
236   } else if (comm == MPI_COMM_NULL) {
237     retval = MPI_ERR_COMM;
238   } else if (dst == MPI_PROC_NULL) {
239     *request = MPI_REQUEST_NULL;
240     retval = MPI_SUCCESS;
241   } else if (dst >= comm->group()->size() || dst <0){
242     retval = MPI_ERR_RANK;
243   } else if ((count < 0)|| (buf==nullptr && count > 0)) {
244     retval = MPI_ERR_COUNT;
245   } else if (not datatype->is_valid()) {
246     retval = MPI_ERR_TYPE;
247   } else if(tag<0 && tag !=  MPI_ANY_TAG){
248     retval = MPI_ERR_TAG;
249   } else {
250     int my_proc_id = simgrid::s4u::Actor::self()->getPid();
251     int trace_dst = getPid(comm, dst);
252     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
253                        new simgrid::instr::Pt2PtTIData("ISsend", dst,
254                                                        datatype->is_replayable() ? count : count * datatype->size(),
255                                                        encode_datatype(datatype)));
256     TRACE_smpi_send(my_proc_id, my_proc_id, trace_dst, tag, count * datatype->size());
257
258     *request = simgrid::smpi::Request::issend(buf, count, datatype, dst, tag, comm);
259     retval = MPI_SUCCESS;
260
261     TRACE_smpi_comm_out(my_proc_id);
262   }
263
264   smpi_bench_begin();
265   if (retval != MPI_SUCCESS && request!=nullptr)
266     *request = MPI_REQUEST_NULL;
267   return retval;
268 }
269
270 int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status * status)
271 {
272   int retval = 0;
273
274   smpi_bench_end();
275   if (comm == MPI_COMM_NULL) {
276     retval = MPI_ERR_COMM;
277   } else if (src == MPI_PROC_NULL) {
278     simgrid::smpi::Status::empty(status);
279     status->MPI_SOURCE = MPI_PROC_NULL;
280     retval = MPI_SUCCESS;
281   } else if (src!=MPI_ANY_SOURCE && (src >= comm->group()->size() || src <0)){
282     retval = MPI_ERR_RANK;
283   } else if ((count < 0) || (buf==nullptr && count > 0)) {
284     retval = MPI_ERR_COUNT;
285   } else if (not datatype->is_valid()) {
286     retval = MPI_ERR_TYPE;
287   } else if(tag<0 && tag !=  MPI_ANY_TAG){
288     retval = MPI_ERR_TAG;
289   } else {
290     int my_proc_id         = simgrid::s4u::Actor::self()->getPid();
291     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
292                        new simgrid::instr::Pt2PtTIData("recv", src,
293                                                        datatype->is_replayable() ? count : count * datatype->size(),
294                                                        encode_datatype(datatype)));
295
296     simgrid::smpi::Request::recv(buf, count, datatype, src, tag, comm, status);
297     retval = MPI_SUCCESS;
298
299     // the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
300     if (status != MPI_STATUS_IGNORE) {
301       int src_traced = getPid(comm, status->MPI_SOURCE);
302       if (not TRACE_smpi_view_internals()) {
303         TRACE_smpi_recv(src_traced, my_proc_id, tag);
304       }
305     }
306     TRACE_smpi_comm_out(my_proc_id);
307   }
308
309   smpi_bench_begin();
310   return retval;
311 }
312
313 int PMPI_Send(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm)
314 {
315   int retval = 0;
316
317   smpi_bench_end();
318
319   if (comm == MPI_COMM_NULL) {
320     retval = MPI_ERR_COMM;
321   } else if (dst == MPI_PROC_NULL) {
322     retval = MPI_SUCCESS;
323   } else if (dst >= comm->group()->size() || dst <0){
324     retval = MPI_ERR_RANK;
325   } else if ((count < 0) || (buf == nullptr && count > 0)) {
326     retval = MPI_ERR_COUNT;
327   } else if (not datatype->is_valid()) {
328     retval = MPI_ERR_TYPE;
329   } else if(tag < 0 && tag !=  MPI_ANY_TAG){
330     retval = MPI_ERR_TAG;
331   } else {
332     int my_proc_id         = simgrid::s4u::Actor::self()->getPid();
333     int dst_traced         = getPid(comm, dst);
334     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
335                        new simgrid::instr::Pt2PtTIData("send", dst,
336                                                        datatype->is_replayable() ? count : count * datatype->size(),
337                                                        encode_datatype(datatype)));
338     if (not TRACE_smpi_view_internals()) {
339       TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, tag, count * datatype->size());
340     }
341
342     simgrid::smpi::Request::send(buf, count, datatype, dst, tag, comm);
343     retval = MPI_SUCCESS;
344
345     TRACE_smpi_comm_out(my_proc_id);
346   }
347
348   smpi_bench_begin();
349   return retval;
350 }
351
352 int PMPI_Ssend(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm) {
353   int retval = 0;
354
355   smpi_bench_end();
356
357   if (comm == MPI_COMM_NULL) {
358     retval = MPI_ERR_COMM;
359   } else if (dst == MPI_PROC_NULL) {
360     retval = MPI_SUCCESS;
361   } else if (dst >= comm->group()->size() || dst <0){
362     retval = MPI_ERR_RANK;
363   } else if ((count < 0) || (buf==nullptr && count > 0)) {
364     retval = MPI_ERR_COUNT;
365   } else if (not datatype->is_valid()) {
366     retval = MPI_ERR_TYPE;
367   } else if(tag<0 && tag !=  MPI_ANY_TAG){
368     retval = MPI_ERR_TAG;
369   } else {
370     int my_proc_id         = simgrid::s4u::Actor::self()->getPid();
371     int dst_traced         = getPid(comm, dst);
372     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
373                        new simgrid::instr::Pt2PtTIData("Ssend", dst,
374                                                        datatype->is_replayable() ? count : count * datatype->size(),
375                                                        encode_datatype(datatype)));
376     TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, tag, count * datatype->size());
377
378     simgrid::smpi::Request::ssend(buf, count, datatype, dst, tag, comm);
379     retval = MPI_SUCCESS;
380
381     TRACE_smpi_comm_out(my_proc_id);
382   }
383
384   smpi_bench_begin();
385   return retval;
386 }
387
388 int PMPI_Sendrecv(void* sendbuf, int sendcount, MPI_Datatype sendtype, int dst, int sendtag, void* recvbuf,
389                   int recvcount, MPI_Datatype recvtype, int src, int recvtag, MPI_Comm comm, MPI_Status* status)
390 {
391   int retval = 0;
392
393   smpi_bench_end();
394
395   if (comm == MPI_COMM_NULL) {
396     retval = MPI_ERR_COMM;
397   } else if (not sendtype->is_valid() || not recvtype->is_valid()) {
398     retval = MPI_ERR_TYPE;
399   } else if (src == MPI_PROC_NULL) {
400     if(status!=MPI_STATUS_IGNORE){
401       simgrid::smpi::Status::empty(status);
402       status->MPI_SOURCE = MPI_PROC_NULL;
403     }
404     if(dst != MPI_PROC_NULL)
405       simgrid::smpi::Request::send(sendbuf, sendcount, sendtype, dst, sendtag, comm);
406     retval = MPI_SUCCESS;
407   }else if (dst == MPI_PROC_NULL){
408     simgrid::smpi::Request::recv(recvbuf, recvcount, recvtype, src, recvtag, comm, status);
409     retval = MPI_SUCCESS;
410   }else if (dst >= comm->group()->size() || dst <0 ||
411       (src!=MPI_ANY_SOURCE && (src >= comm->group()->size() || src <0))){
412     retval = MPI_ERR_RANK;
413   } else if ((sendcount < 0 || recvcount<0) ||
414       (sendbuf==nullptr && sendcount > 0) || (recvbuf==nullptr && recvcount>0)) {
415     retval = MPI_ERR_COUNT;
416   } else if((sendtag<0 && sendtag !=  MPI_ANY_TAG)||(recvtag<0 && recvtag != MPI_ANY_TAG)){
417     retval = MPI_ERR_TAG;
418   } else {
419     int my_proc_id         = simgrid::s4u::Actor::self()->getPid();
420     int dst_traced         = getPid(comm, dst);
421     int src_traced         = getPid(comm, src);
422
423     // FIXME: Hack the way to trace this one
424     std::vector<int>* dst_hack = new std::vector<int>;
425     std::vector<int>* src_hack = new std::vector<int>;
426     dst_hack->push_back(dst_traced);
427     src_hack->push_back(src_traced);
428     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__,
429                        new simgrid::instr::VarCollTIData(
430                            "sendRecv", -1, sendtype->is_replayable() ? sendcount : sendcount * sendtype->size(),
431                            dst_hack, recvtype->is_replayable() ? recvcount : recvcount * recvtype->size(), src_hack,
432                            encode_datatype(sendtype), encode_datatype(recvtype)));
433
434     TRACE_smpi_send(my_proc_id, my_proc_id, dst_traced, sendtag, sendcount * sendtype->size());
435
436     simgrid::smpi::Request::sendrecv(sendbuf, sendcount, sendtype, dst, sendtag, recvbuf, recvcount, recvtype, src,
437                                      recvtag, comm, status);
438     retval = MPI_SUCCESS;
439
440     TRACE_smpi_recv(src_traced, my_proc_id, recvtag);
441     TRACE_smpi_comm_out(my_proc_id);
442   }
443
444   smpi_bench_begin();
445   return retval;
446 }
447
448 int PMPI_Sendrecv_replace(void* buf, int count, MPI_Datatype datatype, int dst, int sendtag, int src, int recvtag,
449                           MPI_Comm comm, MPI_Status* status)
450 {
451   int retval = 0;
452   if (not datatype->is_valid()) {
453     return MPI_ERR_TYPE;
454   } else if (count < 0) {
455     return MPI_ERR_COUNT;
456   } else {
457     int size = datatype->get_extent() * count;
458     void* recvbuf = xbt_new0(char, size);
459     retval = MPI_Sendrecv(buf, count, datatype, dst, sendtag, recvbuf, count, datatype, src, recvtag, comm, status);
460     if(retval==MPI_SUCCESS){
461       simgrid::smpi::Datatype::copy(recvbuf, count, datatype, buf, count, datatype);
462     }
463     xbt_free(recvbuf);
464
465   }
466   return retval;
467 }
468
469 int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status)
470 {
471   int retval = 0;
472   smpi_bench_end();
473   if (request == nullptr || flag == nullptr) {
474     retval = MPI_ERR_ARG;
475   } else if (*request == MPI_REQUEST_NULL) {
476     *flag= true;
477     simgrid::smpi::Status::empty(status);
478     retval = MPI_SUCCESS;
479   } else {
480     int my_proc_id = ((*request)->comm() != MPI_COMM_NULL) ? simgrid::s4u::Actor::self()->getPid() : -1;
481
482     TRACE_smpi_testing_in(my_proc_id);
483
484     *flag = simgrid::smpi::Request::test(request,status);
485
486     TRACE_smpi_testing_out(my_proc_id);
487     retval = MPI_SUCCESS;
488   }
489   smpi_bench_begin();
490   return retval;
491 }
492
493 int PMPI_Testany(int count, MPI_Request requests[], int *index, int *flag, MPI_Status * status)
494 {
495   int retval = 0;
496
497   smpi_bench_end();
498   if (index == nullptr || flag == nullptr) {
499     retval = MPI_ERR_ARG;
500   } else {
501     *flag = simgrid::smpi::Request::testany(count, requests, index, status);
502     retval = MPI_SUCCESS;
503   }
504   smpi_bench_begin();
505   return retval;
506 }
507
508 int PMPI_Testall(int count, MPI_Request* requests, int* flag, MPI_Status* statuses)
509 {
510   int retval = 0;
511
512   smpi_bench_end();
513   if (flag == nullptr) {
514     retval = MPI_ERR_ARG;
515   } else {
516     *flag = simgrid::smpi::Request::testall(count, requests, statuses);
517     retval = MPI_SUCCESS;
518   }
519   smpi_bench_begin();
520   return retval;
521 }
522
523 int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) {
524   int retval = 0;
525   smpi_bench_end();
526
527   if (status == nullptr) {
528     retval = MPI_ERR_ARG;
529   } else if (comm == MPI_COMM_NULL) {
530     retval = MPI_ERR_COMM;
531   } else if (source == MPI_PROC_NULL) {
532     simgrid::smpi::Status::empty(status);
533     status->MPI_SOURCE = MPI_PROC_NULL;
534     retval = MPI_SUCCESS;
535   } else {
536     simgrid::smpi::Request::probe(source, tag, comm, status);
537     retval = MPI_SUCCESS;
538   }
539   smpi_bench_begin();
540   return retval;
541 }
542
543 int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) {
544   int retval = 0;
545   smpi_bench_end();
546
547   if (flag == nullptr) {
548     retval = MPI_ERR_ARG;
549   } else if (comm == MPI_COMM_NULL) {
550     retval = MPI_ERR_COMM;
551   } else if (source == MPI_PROC_NULL) {
552     *flag=true;
553     simgrid::smpi::Status::empty(status);
554     status->MPI_SOURCE = MPI_PROC_NULL;
555     retval = MPI_SUCCESS;
556   } else {
557     simgrid::smpi::Request::iprobe(source, tag, comm, flag, status);
558     retval = MPI_SUCCESS;
559   }
560   smpi_bench_begin();
561   return retval;
562 }
563
564 // TODO: cheinrich: Move declaration to other file? Rename this function - it's used for PMPI_Wait*?
565 static void trace_smpi_recv_helper(MPI_Request* request, MPI_Status* status);
566 static void trace_smpi_recv_helper(MPI_Request* request, MPI_Status* status)
567 {
568   MPI_Request req = *request;
569   if (req != MPI_REQUEST_NULL) { // Received requests become null
570     int src_traced = req->src();
571     // the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
572     int dst_traced = req->dst();
573     if (req->flags() & RECV) { // Is this request a wait for RECV?
574       if (src_traced == MPI_ANY_SOURCE)
575         src_traced = (status != MPI_STATUSES_IGNORE) ? req->comm()->group()->rank(status->MPI_SOURCE) : req->src();
576       TRACE_smpi_recv(src_traced, dst_traced, req->tag());
577     }
578   }
579 }
580
581 int PMPI_Wait(MPI_Request * request, MPI_Status * status)
582 {
583   int retval = 0;
584
585   smpi_bench_end();
586
587   simgrid::smpi::Status::empty(status);
588
589   if (request == nullptr) {
590     retval = MPI_ERR_ARG;
591   } else if (*request == MPI_REQUEST_NULL) {
592     retval = MPI_SUCCESS;
593   } else {
594     int my_proc_id = (*request)->comm() != MPI_COMM_NULL
595                          ? simgrid::s4u::Actor::self()->getPid()
596                          : -1; // TODO: cheinrich: Check if this correct or if it should be MPI_UNDEFINED
597
598     TRACE_smpi_comm_in(my_proc_id, __FUNCTION__, new simgrid::instr::NoOpTIData("wait"));
599
600     simgrid::smpi::Request::wait(request, status);
601     retval = MPI_SUCCESS;
602
603     //the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
604     TRACE_smpi_comm_out(my_proc_id);
605     trace_smpi_recv_helper(request, status);
606   }
607
608   smpi_bench_begin();
609   return retval;
610 }
611
612 int PMPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * status)
613 {
614   if (index == nullptr)
615     return MPI_ERR_ARG;
616
617   if (count <= 0)
618     return MPI_SUCCESS;
619
620   smpi_bench_end();
621
622   int rank_traced = simgrid::s4u::Actor::self()->getPid(); // FIXME: In PMPI_Wait, we check if the comm is null?
623   TRACE_smpi_comm_in(rank_traced, __FUNCTION__, new simgrid::instr::CpuTIData("waitAny", static_cast<double>(count)));
624
625   *index = simgrid::smpi::Request::waitany(count, requests, status);
626
627   if(*index!=MPI_UNDEFINED){
628     trace_smpi_recv_helper(&requests[*index], status);
629     TRACE_smpi_comm_out(rank_traced);
630   }
631
632   smpi_bench_begin();
633   return MPI_SUCCESS;
634 }
635
636 int PMPI_Waitall(int count, MPI_Request requests[], MPI_Status status[])
637 {
638   smpi_bench_end();
639
640   int rank_traced = simgrid::s4u::Actor::self()->getPid(); // FIXME: In PMPI_Wait, we check if the comm is null?
641   TRACE_smpi_comm_in(rank_traced, __FUNCTION__, new simgrid::instr::CpuTIData("waitAll", static_cast<double>(count)));
642
643   int retval = simgrid::smpi::Request::waitall(count, requests, status);
644
645   for (int i = 0; i < count; i++) {
646     trace_smpi_recv_helper(&requests[i], &status[i]);
647   }
648   TRACE_smpi_comm_out(rank_traced);
649
650   smpi_bench_begin();
651   return retval;
652 }
653
654 int PMPI_Waitsome(int incount, MPI_Request requests[], int *outcount, int *indices, MPI_Status status[])
655 {
656   int retval = 0;
657
658   smpi_bench_end();
659   if (outcount == nullptr) {
660     retval = MPI_ERR_ARG;
661   } else {
662     *outcount = simgrid::smpi::Request::waitsome(incount, requests, indices, status);
663     retval = MPI_SUCCESS;
664   }
665   smpi_bench_begin();
666   return retval;
667 }
668
669 int PMPI_Testsome(int incount, MPI_Request requests[], int* outcount, int* indices, MPI_Status status[])
670 {
671   int retval = 0;
672
673   smpi_bench_end();
674   if (outcount == nullptr) {
675     retval = MPI_ERR_ARG;
676   } else {
677     *outcount = simgrid::smpi::Request::testsome(incount, requests, indices, status);
678     retval    = MPI_SUCCESS;
679   }
680   smpi_bench_begin();
681   return retval;
682 }
683
684 MPI_Request PMPI_Request_f2c(MPI_Fint request){
685   return static_cast<MPI_Request>(simgrid::smpi::Request::f2c(request));
686 }
687
688 MPI_Fint PMPI_Request_c2f(MPI_Request request) {
689   return request->c2f();
690 }
691
692 }