Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
eb2103ec03a9a81559ee765b379bfd89bb4659fa
[simgrid.git] / src / smpi / smpi_base.c
1 /* Copyright (c) 2007-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "private.h"
8 #include "xbt/virtu.h"
9 #include "mc/mc.h"
10 #include "xbt/replay.h"
11 #include <errno.h>
12 #include "simix/smx_private.h"
13 #include "surf/surf.h"
14 #include "simgrid/sg_config.h"
15 #include "colls/colls.h"
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_base, smpi, "Logging specific to SMPI (base)");
18
19
20 static int match_recv(void* a, void* b, smx_action_t ignored) {
21    MPI_Request ref = (MPI_Request)a;
22    MPI_Request req = (MPI_Request)b;
23    XBT_DEBUG("Trying to match a recv of src %d against %d, tag %d against %d",ref->src,req->src, ref->tag, req->tag);
24
25   xbt_assert(ref, "Cannot match recv against null reference");
26   xbt_assert(req, "Cannot match recv against null request");
27   if((ref->src == MPI_ANY_SOURCE || req->src == ref->src)
28     && ((ref->tag == MPI_ANY_TAG && req->tag >=0) || req->tag == ref->tag)){
29     //we match, we can transfer some values
30     // FIXME : move this to the copy function ?
31     if(ref->src == MPI_ANY_SOURCE)ref->real_src = req->src;
32     if(ref->tag == MPI_ANY_TAG)ref->real_tag = req->tag;
33     if(ref->real_size < req->real_size) ref->truncated = 1;
34     if(req->detached==1){
35         ref->detached_sender=req; //tie the sender to the receiver, as it is detached and has to be freed in the receiver
36     }
37     XBT_DEBUG("match succeeded");
38     return 1;
39   }else return 0;
40 }
41
42 static int match_send(void* a, void* b,smx_action_t ignored) {
43    MPI_Request ref = (MPI_Request)a;
44    MPI_Request req = (MPI_Request)b;
45    XBT_DEBUG("Trying to match a send of src %d against %d, tag %d against %d",ref->src,req->src, ref->tag, req->tag);
46    xbt_assert(ref, "Cannot match send against null reference");
47    xbt_assert(req, "Cannot match send against null request");
48
49    if((req->src == MPI_ANY_SOURCE || req->src == ref->src)
50              && ((req->tag == MPI_ANY_TAG && ref->tag >=0)|| req->tag == ref->tag))
51    {
52      if(req->src == MPI_ANY_SOURCE)req->real_src = ref->src;
53      if(req->tag == MPI_ANY_TAG)req->real_tag = ref->tag;
54      if(req->real_size < ref->real_size) req->truncated = 1;
55      if(ref->detached==1){
56          req->detached_sender=ref; //tie the sender to the receiver, as it is detached and has to be freed in the receiver
57      }
58     XBT_DEBUG("match succeeded");
59      return 1;
60    } else return 0;
61 }
62
63
64 typedef struct s_smpi_factor *smpi_factor_t;
65 typedef struct s_smpi_factor {
66   long factor;
67   int nb_values;
68   double values[4];//arbitrary set to 4
69 } s_smpi_factor_t;
70 xbt_dynar_t smpi_os_values = NULL;
71 xbt_dynar_t smpi_or_values = NULL;
72 xbt_dynar_t smpi_ois_values = NULL;
73
74 // Methods used to parse and store the values for timing injections in smpi
75 // These are taken from surf/network.c and generalized to have more factors
76 // These methods should be merged with those in surf/network.c (moved somewhere in xbt ?)
77
78 static int factor_cmp(const void *pa, const void *pb)
79 {
80   return (((s_smpi_factor_t*)pa)->factor > ((s_smpi_factor_t*)pb)->factor) ? 1 :
81          (((s_smpi_factor_t*)pa)->factor < ((s_smpi_factor_t*)pb)->factor) ? -1 : 0;
82 }
83
84
85 static xbt_dynar_t parse_factor(const char *smpi_coef_string)
86 {
87   char *value = NULL;
88   unsigned int iter = 0;
89   s_smpi_factor_t fact;
90   fact.nb_values=0;
91   int i=0;
92   xbt_dynar_t smpi_factor, radical_elements, radical_elements2 = NULL;
93
94   smpi_factor = xbt_dynar_new(sizeof(s_smpi_factor_t), NULL);
95   radical_elements = xbt_str_split(smpi_coef_string, ";");
96   xbt_dynar_foreach(radical_elements, iter, value) {
97     memset(&fact, 0, sizeof(s_smpi_factor_t));
98     radical_elements2 = xbt_str_split(value, ":");
99     if (xbt_dynar_length(radical_elements2) <2 || xbt_dynar_length(radical_elements2) > 5)
100       xbt_die("Malformed radical for smpi factor!");
101     for(i =0; i<xbt_dynar_length(radical_elements2);i++ ){
102         if (i==0){
103            fact.factor = atol(xbt_dynar_get_as(radical_elements2, i, char *));
104         }else{
105            fact.values[fact.nb_values] = atof(xbt_dynar_get_as(radical_elements2, i, char *));
106            fact.nb_values++;
107         }
108     }
109
110     xbt_dynar_push_as(smpi_factor, s_smpi_factor_t, fact);
111     XBT_DEBUG("smpi_factor:\t%ld : %d values, first: %f", fact.factor, fact.nb_values ,fact.values[0]);
112     xbt_dynar_free(&radical_elements2);
113   }
114   xbt_dynar_free(&radical_elements);
115   iter=0;
116   xbt_dynar_sort(smpi_factor, &factor_cmp);
117   xbt_dynar_foreach(smpi_factor, iter, fact) {
118     XBT_DEBUG("smpi_factor:\t%ld : %d values, first: %f", fact.factor, fact.nb_values ,fact.values[0]);
119   }
120   return smpi_factor;
121 }
122
123 static double smpi_os(double size)
124 {
125   if (!smpi_os_values) {
126     smpi_os_values = parse_factor(sg_cfg_get_string("smpi/os"));
127     smpi_register_static(smpi_os_values, xbt_dynar_free_voidp);
128   }
129   unsigned int iter = 0;
130   s_smpi_factor_t fact;
131   double current=0.0;
132   xbt_dynar_foreach(smpi_os_values, iter, fact) {
133     if (size <= fact.factor) {
134         XBT_DEBUG("os : %f <= %ld return %f", size, fact.factor, current);
135       return current;
136     }else{
137       current=fact.values[0]+fact.values[1]*size;
138     }
139   }
140   XBT_DEBUG("os : %f > %ld return %f", size, fact.factor, current);
141
142   return current;
143 }
144
145 static double smpi_ois(double size)
146 {
147   if (!smpi_ois_values) {
148     smpi_ois_values = parse_factor(sg_cfg_get_string("smpi/ois"));
149     smpi_register_static(smpi_ois_values, xbt_dynar_free_voidp);
150   }
151   unsigned int iter = 0;
152   s_smpi_factor_t fact;
153   double current=0.0;
154   xbt_dynar_foreach(smpi_ois_values, iter, fact) {
155     if (size <= fact.factor) {
156         XBT_DEBUG("ois : %f <= %ld return %f", size, fact.factor, current);
157       return current;
158     }else{
159       current=fact.values[0]+fact.values[1]*size;
160     }
161   }
162   XBT_DEBUG("ois : %f > %ld return %f", size, fact.factor, current);
163
164   return current;
165 }
166
167 static double smpi_or(double size)
168 {
169   if (!smpi_or_values) {
170     smpi_or_values = parse_factor(sg_cfg_get_string("smpi/or"));
171     smpi_register_static(smpi_or_values, xbt_dynar_free_voidp);
172   }
173   unsigned int iter = 0;
174   s_smpi_factor_t fact;
175   double current=0.0;
176   xbt_dynar_foreach(smpi_or_values, iter, fact) {
177     if (size <= fact.factor) {
178         XBT_DEBUG("or : %f <= %ld return %f", size, fact.factor, current);
179       return current;
180     }else
181       current=fact.values[0]+fact.values[1]*size;
182   }
183   XBT_DEBUG("or : %f > %ld return %f", size, fact.factor, current);
184
185   return current;
186 }
187
188 static MPI_Request build_request(void *buf, int count,
189                                  MPI_Datatype datatype, int src, int dst,
190                                  int tag, MPI_Comm comm, unsigned flags)
191 {
192   MPI_Request request = NULL;
193
194   void *old_buf = NULL;
195
196   request = xbt_new(s_smpi_mpi_request_t, 1);
197
198   s_smpi_subtype_t *subtype = datatype->substruct;
199
200   if(datatype->has_subtype == 1){
201     // This part handles the problem of non-contiguous memory
202     old_buf = buf;
203     buf = count==0 ? NULL : xbt_malloc(count*smpi_datatype_size(datatype));
204     if (flags & SEND) {
205       subtype->serialize(old_buf, buf, count, datatype->substruct);
206     }
207   }
208
209   request->buf = buf;
210   // This part handles the problem of non-contiguous memory (for the
211   // unserialisation at the reception)
212   request->old_buf = old_buf;
213   request->old_type = datatype;
214
215   request->size = smpi_datatype_size(datatype) * count;
216   request->src = src;
217   request->dst = dst;
218   request->tag = tag;
219   request->comm = comm;
220   request->action = NULL;
221   request->flags = flags;
222   request->detached = 0;
223   request->detached_sender = NULL;
224   request->real_src = 0;
225
226   request->truncated = 0;
227   request->real_size = 0;
228   request->real_tag = 0;
229
230   request->refcount=1;
231 #ifdef HAVE_TRACING
232   request->send = 0;
233   request->recv = 0;
234 #endif
235   if (flags & SEND) smpi_datatype_unuse(datatype);
236
237   return request;
238 }
239
240
241 void smpi_empty_status(MPI_Status * status)
242 {
243   if(status != MPI_STATUS_IGNORE) {
244     status->MPI_SOURCE = MPI_ANY_SOURCE;
245     status->MPI_TAG = MPI_ANY_TAG;
246     status->MPI_ERROR = MPI_SUCCESS;
247     status->count=0;
248   }
249 }
250
251 void smpi_action_trace_run(char *path)
252 {
253   char *name;
254   xbt_dynar_t todo;
255   xbt_dict_cursor_t cursor;
256
257   action_fp=NULL;
258   if (path) {
259     action_fp = fopen(path, "r");
260     xbt_assert(action_fp != NULL, "Cannot open %s: %s", path,
261                strerror(errno));
262   }
263
264   if (!xbt_dict_is_empty(action_queues)) {
265     XBT_WARN
266       ("Not all actions got consumed. If the simulation ended successfully (without deadlock), you may want to add new processes to your deployment file.");
267
268
269     xbt_dict_foreach(action_queues, cursor, name, todo) {
270       XBT_WARN("Still %lu actions for %s", xbt_dynar_length(todo), name);
271     }
272   }
273
274   if (path)
275     fclose(action_fp);
276   xbt_dict_free(&action_queues);
277   action_queues = xbt_dict_new_homogeneous(NULL);
278 }
279
280 static void smpi_mpi_request_free_voidp(void* request)
281 {
282   MPI_Request req = request;
283   smpi_mpi_request_free(&req);
284 }
285
286 /* MPI Low level calls */
287 MPI_Request smpi_mpi_send_init(void *buf, int count, MPI_Datatype datatype,
288                                int dst, int tag, MPI_Comm comm)
289 {
290   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
291   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
292                           comm, PERSISTENT | SEND | PREPARED);
293   request->refcount++;
294   return request;
295 }
296
297 MPI_Request smpi_mpi_ssend_init(void *buf, int count, MPI_Datatype datatype,
298                                int dst, int tag, MPI_Comm comm)
299 {
300   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
301   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
302                           comm, PERSISTENT | SSEND | SEND | PREPARED);
303   request->refcount++;
304   return request;
305 }
306
307 MPI_Request smpi_mpi_recv_init(void *buf, int count, MPI_Datatype datatype,
308                                int src, int tag, MPI_Comm comm)
309 {
310   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
311   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, src == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : smpi_group_index(smpi_comm_group(comm), src), smpi_process_index(), tag,
312                           comm, PERSISTENT | RECV | PREPARED);
313   request->refcount++;
314   return request;
315 }
316
317 void smpi_mpi_start(MPI_Request request)
318 {
319   smx_rdv_t mailbox;
320
321   xbt_assert(!request->action, "Cannot (re)start a non-finished communication");
322   request->flags &= ~PREPARED;
323   if (request->flags & RECV) {
324     print_request("New recv", request);
325     //FIXME: if receive is posted with a large size, but send is smaller, mailboxes may not match !
326     if (request->size < sg_cfg_get_int("smpi/async_small_thres"))
327       mailbox = smpi_process_mailbox_small();
328     else
329       mailbox = smpi_process_mailbox();
330     // we make a copy here, as the size is modified by simix, and we may reuse the request in another receive later
331     request->real_size=request->size;
332     smpi_datatype_use(request->old_type);
333     smpi_comm_use(request->comm);
334     request->action = simcall_comm_irecv(mailbox, request->buf,
335                                          &request->real_size, &match_recv,
336                                          request, -1.0);
337
338     //integrate pseudo-timing for buffering of small messages, do not bother to execute the simcall if 0
339     double sleeptime = request->detached ? smpi_or(request->size) : 0.0;
340     if(sleeptime!=0.0){
341         simcall_process_sleep(sleeptime);
342         XBT_DEBUG("receiving size of %zu : sleep %f ", request->size, smpi_or(request->size));
343     }
344
345   } else {
346
347
348     int receiver = request->dst;//smpi_group_index(smpi_comm_group(request->comm), request->dst);
349
350     #ifdef HAVE_TRACING
351       int rank = smpi_process_index();
352       if (TRACE_smpi_view_internals()) {
353         TRACE_smpi_send(rank, rank, receiver,request->size);
354       }
355     #endif
356 /*    if(receiver == MPI_UNDEFINED) {*/
357 /*      XBT_WARN("Trying to send a message to a wrong rank");*/
358 /*      return;*/
359 /*    }*/
360     print_request("New send", request);
361     if (request->size < sg_cfg_get_int("smpi/async_small_thres")) { // eager mode
362       mailbox = smpi_process_remote_mailbox_small(receiver);
363     }else{
364       XBT_DEBUG("Send request %p is not in the permanent receive mailbox (buf: %p)",request,request->buf);
365       mailbox = smpi_process_remote_mailbox(receiver);
366     }
367     if ( (! (request->flags & SSEND)) && (request->size < sg_cfg_get_int("smpi/send_is_detached_thres"))) {
368       void *oldbuf = NULL;
369       request->detached = 1;
370       request->refcount++;
371       if(request->old_type->has_subtype == 0){
372         oldbuf = request->buf;
373         if (!_xbt_replay_is_active() && oldbuf && request->size!=0){
374           request->buf = xbt_malloc(request->size);
375           memcpy(request->buf,oldbuf,request->size);
376         }
377       }
378       XBT_DEBUG("Send request %p is detached; buf %p copied into %p",request,oldbuf,request->buf);
379     }
380
381     // we make a copy here, as the size is modified by simix, and we may reuse the request in another receive later
382     request->real_size=request->size;
383     smpi_datatype_use(request->old_type);
384     smpi_comm_use(request->comm);
385
386     //if we are giving back the control to the user without waiting for completion, we have to inject timings
387     double sleeptime =0.0;
388     if(request->detached || (request->flags & (ISEND|SSEND))){// issend should be treated as isend
389       //isend and send timings may be different
390       sleeptime = (request->flags & ISEND)? smpi_ois(request->size) : smpi_os(request->size);
391     }
392
393     if(sleeptime!=0.0){
394         simcall_process_sleep(sleeptime);
395         XBT_DEBUG("sending size of %zu : sleep %f ", request->size, smpi_os(request->size));
396     }
397
398     request->action =
399       simcall_comm_isend(mailbox, request->size, -1.0,
400                          request->buf, request->real_size,
401                          &match_send,
402                          &xbt_free, // how to free the userdata if a detached send fails
403                          request,
404                          // detach if msg size < eager/rdv switch limit
405                          request->detached);
406
407 #ifdef HAVE_TRACING
408     /* FIXME: detached sends are not traceable (request->action == NULL) */
409     if (request->action)
410       simcall_set_category(request->action, TRACE_internal_smpi_get_category());
411
412 #endif
413
414   }
415
416 }
417
418 void smpi_mpi_startall(int count, MPI_Request * requests)
419 {
420   int i;
421   if(requests==NULL) return;
422
423   for(i = 0; i < count; i++) {
424     smpi_mpi_start(requests[i]);
425   }
426 }
427
428 void smpi_mpi_request_free(MPI_Request * request)
429 {
430   if((*request) != MPI_REQUEST_NULL){
431     (*request)->refcount--;
432     if((*request)->refcount<0) xbt_die("wrong refcount");
433
434     if((*request)->refcount==0){
435         print_request("Destroying", (*request));
436         xbt_free(*request);
437         *request = MPI_REQUEST_NULL;
438     }else{
439         print_request("Decrementing", (*request));
440
441     }
442   }else{
443       xbt_die("freeing an already free request");
444   }
445 }
446
447 MPI_Request smpi_isend_init(void *buf, int count, MPI_Datatype datatype,
448                             int dst, int tag, MPI_Comm comm)
449 {
450   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
451   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf , count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
452                           comm, NON_PERSISTENT | ISEND | SEND | PREPARED);
453   return request;
454 }
455
456 MPI_Request smpi_mpi_isend(void *buf, int count, MPI_Datatype datatype,
457                            int dst, int tag, MPI_Comm comm)
458 {
459   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
460   request =  build_request(buf==MPI_BOTTOM?(void*)0:buf, count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
461                            comm, NON_PERSISTENT | ISEND | SEND);
462   smpi_mpi_start(request);
463   return request;
464 }
465
466 MPI_Request smpi_mpi_issend(void *buf, int count, MPI_Datatype datatype,
467                            int dst, int tag, MPI_Comm comm)
468 {
469   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
470   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
471                           comm, NON_PERSISTENT | ISEND | SSEND | SEND);
472   smpi_mpi_start(request);
473   return request;
474 }
475
476
477
478 MPI_Request smpi_irecv_init(void *buf, int count, MPI_Datatype datatype,
479                             int src, int tag, MPI_Comm comm)
480 {
481   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
482   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, src == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : smpi_group_index(smpi_comm_group(comm), src), smpi_process_index(), tag,
483                           comm, NON_PERSISTENT | RECV | PREPARED);
484   return request;
485 }
486
487 MPI_Request smpi_mpi_irecv(void *buf, int count, MPI_Datatype datatype,
488                            int src, int tag, MPI_Comm comm)
489 {
490   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
491   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, src == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : smpi_group_index(smpi_comm_group(comm), src), smpi_process_index(), tag,
492                           comm, NON_PERSISTENT | RECV);
493   smpi_mpi_start(request);
494   return request;
495 }
496
497 void smpi_mpi_recv(void *buf, int count, MPI_Datatype datatype, int src,
498                    int tag, MPI_Comm comm, MPI_Status * status)
499 {
500   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
501   request = smpi_mpi_irecv(buf, count, datatype, src, tag, comm);
502   smpi_mpi_wait(&request, status);
503   request = NULL;
504 }
505
506
507
508 void smpi_mpi_send(void *buf, int count, MPI_Datatype datatype, int dst,
509                    int tag, MPI_Comm comm)
510 {
511   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
512   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
513                           comm, NON_PERSISTENT | SEND);
514
515   smpi_mpi_start(request);
516   smpi_mpi_wait(&request, MPI_STATUS_IGNORE);
517   request = NULL;
518 }
519
520 void smpi_mpi_ssend(void *buf, int count, MPI_Datatype datatype,
521                            int dst, int tag, MPI_Comm comm)
522 {
523   MPI_Request request = NULL; /* MC needs the comm to be set to NULL during the call */
524   request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf, count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
525                 comm, NON_PERSISTENT | SSEND | SEND);
526
527   smpi_mpi_start(request);
528   smpi_mpi_wait(&request, MPI_STATUS_IGNORE);
529   request = NULL;
530 }
531
532 void smpi_mpi_sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
533                        int dst, int sendtag, void *recvbuf, int recvcount,
534                        MPI_Datatype recvtype, int src, int recvtag,
535                        MPI_Comm comm, MPI_Status * status)
536 {
537   MPI_Request requests[2];
538   MPI_Status stats[2];
539   int myid=smpi_process_index();
540   if ((smpi_group_index(smpi_comm_group(comm), dst) == myid) && (smpi_group_index(smpi_comm_group(comm), src) == myid)) {
541       smpi_datatype_copy(sendbuf, sendcount, sendtype,
542                                      recvbuf, recvcount, recvtype);
543       return;
544   }
545   requests[0] =
546     smpi_isend_init(sendbuf, sendcount, sendtype, dst, sendtag, comm);
547   requests[1] =
548     smpi_irecv_init(recvbuf, recvcount, recvtype, src, recvtag, comm);
549   smpi_mpi_startall(2, requests);
550   smpi_mpi_waitall(2, requests, stats);
551   if(status != MPI_STATUS_IGNORE) {
552     // Copy receive status
553     *status = stats[1];
554   }
555 }
556
557 int smpi_mpi_get_count(MPI_Status * status, MPI_Datatype datatype)
558 {
559   return status->count / smpi_datatype_size(datatype);
560 }
561
562 static void finish_wait(MPI_Request * request, MPI_Status * status)
563 {
564   MPI_Request req = *request;
565   smpi_empty_status(status);
566
567   if(!(req->detached && req->flags & SEND) && !(req->flags & PREPARED)){
568     if(status != MPI_STATUS_IGNORE) {
569       int src = req->src == MPI_ANY_SOURCE ? req->real_src : req->src;
570       status->MPI_SOURCE = smpi_group_rank(smpi_comm_group(req->comm), src);
571       status->MPI_TAG = req->tag == MPI_ANY_TAG ? req->real_tag : req->tag;
572       status->MPI_ERROR = req->truncated ? MPI_ERR_TRUNCATE : MPI_SUCCESS;
573       // this handles the case were size in receive differs from size in send
574       // FIXME: really this should just contain the count of receive-type blocks,
575       // right?
576       status->count = req->real_size;
577     }
578
579     print_request("Finishing", req);
580     MPI_Datatype datatype = req->old_type;
581
582     if(datatype->has_subtype == 1){
583       // This part handles the problem of non-contignous memory
584       // the unserialization at the reception
585       s_smpi_subtype_t *subtype = datatype->substruct;
586       if(req->flags & RECV) {
587         subtype->unserialize(req->buf, req->old_buf, req->real_size/smpi_datatype_size(datatype) , datatype->substruct);
588       }
589       if(req->detached == 0) free(req->buf);
590     }
591     smpi_comm_unuse(req->comm);
592     smpi_datatype_unuse(datatype);
593
594   }
595
596 #ifdef HAVE_TRACING
597   if (TRACE_smpi_view_internals()) {
598     if(req->flags & RECV){
599       int rank = smpi_process_index();
600       int src_traced = (req->src == MPI_ANY_SOURCE ? req->real_src : req->src);
601       TRACE_smpi_recv(rank, src_traced, rank);
602     }
603   }
604 #endif
605
606   if(req->detached_sender!=NULL){
607     smpi_mpi_request_free(&(req->detached_sender));
608   }
609
610   if(req->flags & NON_PERSISTENT) {
611     smpi_mpi_request_free(request);
612   } else {
613     req->action = NULL;
614   }
615 }
616
617 int smpi_mpi_test(MPI_Request * request, MPI_Status * status) {
618   int flag;
619
620   //assume that request is not MPI_REQUEST_NULL (filtered in PMPI_Test or smpi_mpi_testall before)
621   smpi_empty_status(status);
622   flag = 1;
623   if (!((*request)->flags & PREPARED)) {
624     if ((*request)->action != NULL)
625       flag = simcall_comm_test((*request)->action);
626     if (flag) {
627       finish_wait(request, status);
628       *request = MPI_REQUEST_NULL;
629     }
630   }
631   return flag;
632 }
633
634 int smpi_mpi_testany(int count, MPI_Request requests[], int *index,
635                      MPI_Status * status)
636 {
637   xbt_dynar_t comms;
638   int i, flag, size;
639   int* map;
640
641   *index = MPI_UNDEFINED;
642   flag = 0;
643   comms = xbt_dynar_new(sizeof(smx_action_t), NULL);
644   map = xbt_new(int, count);
645   size = 0;
646   for(i = 0; i < count; i++) {
647     if ((requests[i] != MPI_REQUEST_NULL) && requests[i]->action &&
648         !(requests[i]->flags & PREPARED)) {
649        xbt_dynar_push(comms, &requests[i]->action);
650        map[size] = i;
651        size++;
652     }
653   }
654   if(size > 0) {
655     i = simcall_comm_testany(comms);
656     // not MPI_UNDEFINED, as this is a simix return code
657     if(i != -1) {
658       *index = map[i];
659       finish_wait(&requests[*index], status);
660       requests[*index] = MPI_REQUEST_NULL;
661       flag = 1;
662     }
663   }else{
664       //all requests are null or inactive, return true
665       flag=1;
666       smpi_empty_status(status);
667   }
668   xbt_free(map);
669   xbt_dynar_free(&comms);
670
671   return flag;
672 }
673
674
675 int smpi_mpi_testall(int count, MPI_Request requests[],
676                      MPI_Status status[])
677 {
678   MPI_Status stat;
679   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
680   int flag=1;
681   int i;
682   for(i=0; i<count; i++){
683     if (requests[i] != MPI_REQUEST_NULL && !(requests[i]->flags & PREPARED)) {
684       if (smpi_mpi_test(&requests[i], pstat)!=1){
685         flag=0;
686       }else{
687           requests[i]=MPI_REQUEST_NULL;
688       }
689     }else{
690       smpi_empty_status(pstat);
691     }
692     if(status != MPI_STATUSES_IGNORE) {
693       status[i] = *pstat;
694     }
695   }
696   return flag;
697 }
698
699 void smpi_mpi_probe(int source, int tag, MPI_Comm comm, MPI_Status* status){
700   int flag=0;
701   //FIXME find another wait to avoid busy waiting ?
702   // the issue here is that we have to wait on a nonexistent comm
703   while(flag==0){
704     smpi_mpi_iprobe(source, tag, comm, &flag, status);
705     XBT_DEBUG("Busy Waiting on probing : %d", flag);
706   }
707 }
708
709 void smpi_mpi_iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status){
710
711   MPI_Request request =build_request(NULL, 0, MPI_CHAR, source == MPI_ANY_SOURCE ? MPI_ANY_SOURCE : smpi_group_index(smpi_comm_group(comm), source), smpi_comm_rank(comm), tag,
712             comm, NON_PERSISTENT | RECV);
713
714   //to avoid deadlock, we have to sleep some time here, or the timer won't advance and we will only do iprobe simcalls
715   double sleeptime= sg_cfg_get_double("smpi/iprobe");
716   //multiplier to the sleeptime, to increase speed of execution, each failed iprobe will increase it
717   static int nsleeps = 1;
718
719   simcall_process_sleep(sleeptime);
720
721   // behave like a receive, but don't do it
722   smx_rdv_t mailbox;
723
724   print_request("New iprobe", request);
725   // We have to test both mailboxes as we don't know if we will receive one one or another
726     if (sg_cfg_get_int("smpi/async_small_thres")>0){
727         mailbox = smpi_process_mailbox_small();
728         XBT_DEBUG("trying to probe the perm recv mailbox");
729         request->action = simcall_comm_iprobe(mailbox, request->src, request->tag, &match_recv, (void*)request);
730     }
731     if (request->action==NULL){
732         mailbox = smpi_process_mailbox();
733         XBT_DEBUG("trying to probe the other mailbox");
734         request->action = simcall_comm_iprobe(mailbox, request->src, request->tag, &match_recv, (void*)request);
735     }
736
737   if(request->action){
738     MPI_Request req = (MPI_Request)SIMIX_comm_get_src_data(request->action);
739     *flag = 1;
740     if(status != MPI_STATUS_IGNORE && !(req->flags & PREPARED)) {
741       status->MPI_SOURCE = smpi_group_rank(smpi_comm_group(comm), req->src);
742       status->MPI_TAG = req->tag;
743       status->MPI_ERROR = MPI_SUCCESS;
744       status->count = req->real_size;
745     }
746     nsleeps=1;//reset the number of sleeps we will do next time
747   }
748   else {
749       *flag = 0;
750       nsleeps++;
751   }
752   smpi_mpi_request_free(&request);
753
754   return;
755 }
756
757 void smpi_mpi_wait(MPI_Request * request, MPI_Status * status)
758 {
759   print_request("Waiting", *request);
760   if ((*request)->flags & PREPARED) {
761     smpi_empty_status(status);
762     return;
763   }
764
765   if ((*request)->action != NULL) { // this is not a detached send
766     simcall_comm_wait((*request)->action, -1.0);
767 #ifdef HAVE_MC
768   if(MC_is_active())
769     (*request)->action->comm.dst_data = NULL; // dangling pointer : dst_data is freed with a wait, need to set it to NULL for system state comparison
770 #endif
771   }
772
773   finish_wait(request, status);
774   if (*request != MPI_REQUEST_NULL && !((*request)->flags & PERSISTENT))
775       *request = MPI_REQUEST_NULL;
776   // FIXME for a detached send, finish_wait is not called:
777 }
778
779 int smpi_mpi_waitany(int count, MPI_Request requests[],
780                      MPI_Status * status)
781 {
782   xbt_dynar_t comms;
783   int i, size, index;
784   int *map;
785
786   index = MPI_UNDEFINED;
787   if(count > 0) {
788     // Wait for a request to complete
789     comms = xbt_dynar_new(sizeof(smx_action_t), NULL);
790     map = xbt_new(int, count);
791     size = 0;
792     XBT_DEBUG("Wait for one of %d", count);
793     for(i = 0; i < count; i++) {
794       if (requests[i] != MPI_REQUEST_NULL && !(requests[i]->flags & PREPARED)) {
795         if (requests[i]->action != NULL) {
796           XBT_DEBUG("Waiting any %p ", requests[i]);
797           xbt_dynar_push(comms, &requests[i]->action);
798           map[size] = i;
799           size++;
800         }else{
801          //This is a finished detached request, let's return this one
802          size=0;//so we free the dynar but don't do the waitany call
803          index=i;
804          finish_wait(&requests[i], status);//cleanup if refcount = 0
805          requests[i]=MPI_REQUEST_NULL;//set to null
806          break;
807          }
808       }
809     }
810     if(size > 0) {
811       i = simcall_comm_waitany(comms);
812
813       // not MPI_UNDEFINED, as this is a simix return code
814       if (i != -1) {
815         index = map[i];
816         finish_wait(&requests[index], status);
817         requests[index] = MPI_REQUEST_NULL;
818       }
819     }
820     xbt_free(map);
821     xbt_dynar_free(&comms);
822   }
823
824   if (index==MPI_UNDEFINED)
825     smpi_empty_status(status);
826
827   return index;
828 }
829
830 int smpi_mpi_waitall(int count, MPI_Request requests[],
831                       MPI_Status status[])
832 {
833   int  index, c;
834   MPI_Status stat;
835   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
836   int retvalue = MPI_SUCCESS;
837   //tag invalid requests in the set
838   if (status != MPI_STATUSES_IGNORE) {
839     for (c = 0; c < count; c++) {
840       if (requests[c] == MPI_REQUEST_NULL || requests[c]->dst == MPI_PROC_NULL ||
841           (requests[c]->flags & PREPARED)) {
842         smpi_empty_status(&status[c]);
843       } else if (requests[c]->src == MPI_PROC_NULL) {
844         smpi_empty_status(&status[c]);
845         status[c].MPI_SOURCE = MPI_PROC_NULL;
846       }
847     }
848   }
849   for(c = 0; c < count; c++) {
850     if (MC_is_active()) {
851       smpi_mpi_wait(&requests[c], pstat);
852       index = c;
853     } else {
854       index = smpi_mpi_waitany(count, requests, pstat);
855       if (index == MPI_UNDEFINED)
856         break;
857       requests[index]=MPI_REQUEST_NULL;
858     }
859     if (status != MPI_STATUSES_IGNORE) {
860       status[index] = *pstat;
861       if (status[index].MPI_ERROR == MPI_ERR_TRUNCATE)
862         retvalue = MPI_ERR_IN_STATUS;
863     }
864   }
865
866   return retvalue;
867 }
868
869 int smpi_mpi_waitsome(int incount, MPI_Request requests[], int *indices,
870                       MPI_Status status[])
871 {
872   int i, count, index;
873   MPI_Status stat;
874   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
875
876   count = 0;
877   for(i = 0; i < incount; i++)
878   {
879     index=smpi_mpi_waitany(incount, requests, pstat);
880     if(index!=MPI_UNDEFINED){
881       indices[count] = index;
882       count++;
883       if(status != MPI_STATUSES_IGNORE) {
884         status[index] = *pstat;
885       }
886      requests[index]=MPI_REQUEST_NULL;
887     }else{
888       return MPI_UNDEFINED;
889     }
890   }
891   return count;
892 }
893
894 int smpi_mpi_testsome(int incount, MPI_Request requests[], int *indices,
895                       MPI_Status status[])
896 {
897   int i, count, count_dead;
898   MPI_Status stat;
899   MPI_Status *pstat = status == MPI_STATUSES_IGNORE ? MPI_STATUS_IGNORE : &stat;
900
901   count = 0;
902   count_dead = 0;
903   for(i = 0; i < incount; i++) {
904     if((requests[i] != MPI_REQUEST_NULL)) {
905       if(smpi_mpi_test(&requests[i], pstat)) {
906          indices[i] = 1;
907          count++;
908          if(status != MPI_STATUSES_IGNORE) {
909            status[i] = *pstat;
910          }
911          requests[i]=MPI_REQUEST_NULL;
912
913       }
914     }else{
915       count_dead++;
916     }
917   }
918   if(count_dead==incount)return MPI_UNDEFINED;
919   else return count;
920 }
921
922 void smpi_mpi_bcast(void *buf, int count, MPI_Datatype datatype, int root,
923                     MPI_Comm comm)
924 {
925   // arity=2: a binary tree, arity=4 seem to be a good setting (see P2P-MPI))
926   nary_tree_bcast(buf, count, datatype, root, comm, 4);
927 }
928
929 void smpi_mpi_barrier(MPI_Comm comm)
930 {
931   // arity=2: a binary tree, arity=4 seem to be a good setting (see P2P-MPI))
932   nary_tree_barrier(comm, 4);
933 }
934
935 void smpi_mpi_gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
936                      void *recvbuf, int recvcount, MPI_Datatype recvtype,
937                      int root, MPI_Comm comm)
938 {
939   int system_tag = COLL_TAG_GATHER;
940   int rank, size, src, index;
941   MPI_Aint lb = 0, recvext = 0;
942   MPI_Request *requests;
943
944   rank = smpi_comm_rank(comm);
945   size = smpi_comm_size(comm);
946   if(rank != root) {
947     // Send buffer to root
948     smpi_mpi_send(sendbuf, sendcount, sendtype, root, system_tag, comm);
949   } else {
950     // FIXME: check for errors
951     smpi_datatype_extent(recvtype, &lb, &recvext);
952     // Local copy from root
953     smpi_datatype_copy(sendbuf, sendcount, sendtype,
954                        (char *)recvbuf + root * recvcount * recvext, recvcount, recvtype);
955     // Receive buffers from senders
956     requests = xbt_new(MPI_Request, size - 1);
957     index = 0;
958     for(src = 0; src < size; src++) {
959       if(src != root) {
960         requests[index] = smpi_irecv_init((char *)recvbuf + src * recvcount * recvext,
961                                           recvcount, recvtype,
962                                           src, system_tag, comm);
963         index++;
964       }
965     }
966     // Wait for completion of irecv's.
967     smpi_mpi_startall(size - 1, requests);
968     smpi_mpi_waitall(size - 1, requests, MPI_STATUS_IGNORE);
969     xbt_free(requests);
970   }
971 }
972
973
974 void smpi_mpi_reduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts,
975                        MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
976 {
977     int i, size, count;
978     int *displs;
979     int rank = smpi_process_index();
980     void *tmpbuf;
981
982     /* arbitrarily choose root as rank 0 */
983     size = smpi_comm_size(comm);
984     count = 0;
985     displs = xbt_new(int, size);
986     for (i = 0; i < size; i++) {
987       displs[i] = count;
988       count += recvcounts[i];
989     }
990     tmpbuf=(void*)xbt_malloc(count*smpi_datatype_get_extent(datatype));
991     mpi_coll_reduce_fun(sendbuf, tmpbuf, count, datatype, op, 0, comm);
992     smpi_mpi_scatterv(tmpbuf, recvcounts, displs, datatype, recvbuf,
993                       recvcounts[rank], datatype, 0, comm);
994     xbt_free(displs);
995     xbt_free(tmpbuf);
996 }
997
998 void smpi_mpi_gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
999                       void *recvbuf, int *recvcounts, int *displs,
1000                       MPI_Datatype recvtype, int root, MPI_Comm comm)
1001 {
1002   int system_tag = COLL_TAG_GATHERV;
1003   int rank, size, src, index;
1004   MPI_Aint lb = 0, recvext = 0;
1005   MPI_Request *requests;
1006
1007   rank = smpi_comm_rank(comm);
1008   size = smpi_comm_size(comm);
1009   if(rank != root) {
1010     // Send buffer to root
1011     smpi_mpi_send(sendbuf, sendcount, sendtype, root, system_tag, comm);
1012   } else {
1013     // FIXME: check for errors
1014     smpi_datatype_extent(recvtype, &lb, &recvext);
1015     // Local copy from root
1016     smpi_datatype_copy(sendbuf, sendcount, sendtype,
1017                        (char *)recvbuf + displs[root] * recvext,
1018                        recvcounts[root], recvtype);
1019     // Receive buffers from senders
1020     requests = xbt_new(MPI_Request, size - 1);
1021     index = 0;
1022     for(src = 0; src < size; src++) {
1023       if(src != root) {
1024         requests[index] =
1025           smpi_irecv_init((char *)recvbuf + displs[src] * recvext,
1026                           recvcounts[src], recvtype, src, system_tag, comm);
1027         index++;
1028       }
1029     }
1030     // Wait for completion of irecv's.
1031     smpi_mpi_startall(size - 1, requests);
1032     smpi_mpi_waitall(size - 1, requests, MPI_STATUS_IGNORE);
1033     xbt_free(requests);
1034   }
1035 }
1036
1037 void smpi_mpi_allgather(void *sendbuf, int sendcount,
1038                         MPI_Datatype sendtype, void *recvbuf,
1039                         int recvcount, MPI_Datatype recvtype,
1040                         MPI_Comm comm)
1041 {
1042   int system_tag = COLL_TAG_ALLGATHER;
1043   int rank, size, other, index;
1044   MPI_Aint lb = 0, recvext = 0;
1045   MPI_Request *requests;
1046
1047   rank = smpi_comm_rank(comm);
1048   size = smpi_comm_size(comm);
1049   // FIXME: check for errors
1050   smpi_datatype_extent(recvtype, &lb, &recvext);
1051   // Local copy from self
1052   smpi_datatype_copy(sendbuf, sendcount, sendtype,
1053                      (char *)recvbuf + rank * recvcount * recvext, recvcount,
1054                      recvtype);
1055   // Send/Recv buffers to/from others;
1056   requests = xbt_new(MPI_Request, 2 * (size - 1));
1057   index = 0;
1058   for(other = 0; other < size; other++) {
1059     if(other != rank) {
1060       requests[index] =
1061         smpi_isend_init(sendbuf, sendcount, sendtype, other, system_tag,
1062                         comm);
1063       index++;
1064       requests[index] = smpi_irecv_init((char *)recvbuf + other * recvcount * recvext,
1065                                         recvcount, recvtype, other,
1066                                         system_tag, comm);
1067       index++;
1068     }
1069   }
1070   // Wait for completion of all comms.
1071   smpi_mpi_startall(2 * (size - 1), requests);
1072   smpi_mpi_waitall(2 * (size - 1), requests, MPI_STATUS_IGNORE);
1073   xbt_free(requests);
1074 }
1075
1076 void smpi_mpi_allgatherv(void *sendbuf, int sendcount,
1077                          MPI_Datatype sendtype, void *recvbuf,
1078                          int *recvcounts, int *displs,
1079                          MPI_Datatype recvtype, MPI_Comm comm)
1080 {
1081   int system_tag = COLL_TAG_ALLGATHERV;
1082   int rank, size, other, index;
1083   MPI_Aint lb = 0, recvext = 0;
1084   MPI_Request *requests;
1085
1086   rank = smpi_comm_rank(comm);
1087   size = smpi_comm_size(comm);
1088   // FIXME: check for errors
1089   smpi_datatype_extent(recvtype, &lb, &recvext);
1090   // Local copy from self
1091   smpi_datatype_copy(sendbuf, sendcount, sendtype,
1092                      (char *)recvbuf + displs[rank] * recvext,
1093                      recvcounts[rank], recvtype);
1094   // Send buffers to others;
1095   requests = xbt_new(MPI_Request, 2 * (size - 1));
1096   index = 0;
1097   for(other = 0; other < size; other++) {
1098     if(other != rank) {
1099       requests[index] =
1100         smpi_isend_init(sendbuf, sendcount, sendtype, other, system_tag,
1101                         comm);
1102       index++;
1103       requests[index] =
1104         smpi_irecv_init((char *)recvbuf + displs[other] * recvext, recvcounts[other],
1105                         recvtype, other, system_tag, comm);
1106       index++;
1107     }
1108   }
1109   // Wait for completion of all comms.
1110   smpi_mpi_startall(2 * (size - 1), requests);
1111   smpi_mpi_waitall(2 * (size - 1), requests, MPI_STATUS_IGNORE);
1112   xbt_free(requests);
1113 }
1114
1115 void smpi_mpi_scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1116                       void *recvbuf, int recvcount, MPI_Datatype recvtype,
1117                       int root, MPI_Comm comm)
1118 {
1119   int system_tag = COLL_TAG_SCATTER;
1120   int rank, size, dst, index;
1121   MPI_Aint lb = 0, sendext = 0;
1122   MPI_Request *requests;
1123
1124   rank = smpi_comm_rank(comm);
1125   size = smpi_comm_size(comm);
1126   if(rank != root) {
1127     // Recv buffer from root
1128     smpi_mpi_recv(recvbuf, recvcount, recvtype, root, system_tag, comm,
1129                   MPI_STATUS_IGNORE);
1130   } else {
1131     // FIXME: check for errors
1132     smpi_datatype_extent(sendtype, &lb, &sendext);
1133     // Local copy from root
1134     if(recvbuf!=MPI_IN_PLACE){
1135         smpi_datatype_copy((char *)sendbuf + root * sendcount * sendext,
1136                            sendcount, sendtype, recvbuf, recvcount, recvtype);
1137     }
1138     // Send buffers to receivers
1139     requests = xbt_new(MPI_Request, size - 1);
1140     index = 0;
1141     for(dst = 0; dst < size; dst++) {
1142       if(dst != root) {
1143         requests[index] = smpi_isend_init((char *)sendbuf + dst * sendcount * sendext,
1144                                           sendcount, sendtype, dst,
1145                                           system_tag, comm);
1146         index++;
1147       }
1148     }
1149     // Wait for completion of isend's.
1150     smpi_mpi_startall(size - 1, requests);
1151     smpi_mpi_waitall(size - 1, requests, MPI_STATUS_IGNORE);
1152     xbt_free(requests);
1153   }
1154 }
1155
1156 void smpi_mpi_scatterv(void *sendbuf, int *sendcounts, int *displs,
1157                        MPI_Datatype sendtype, void *recvbuf, int recvcount,
1158                        MPI_Datatype recvtype, int root, MPI_Comm comm)
1159 {
1160   int system_tag = COLL_TAG_SCATTERV;
1161   int rank, size, dst, index;
1162   MPI_Aint lb = 0, sendext = 0;
1163   MPI_Request *requests;
1164
1165   rank = smpi_comm_rank(comm);
1166   size = smpi_comm_size(comm);
1167   if(rank != root) {
1168     // Recv buffer from root
1169     smpi_mpi_recv(recvbuf, recvcount, recvtype, root, system_tag, comm,
1170                   MPI_STATUS_IGNORE);
1171   } else {
1172     // FIXME: check for errors
1173     smpi_datatype_extent(sendtype, &lb, &sendext);
1174     // Local copy from root
1175     if(recvbuf!=MPI_IN_PLACE){
1176       smpi_datatype_copy((char *)sendbuf + displs[root] * sendext, sendcounts[root],
1177                        sendtype, recvbuf, recvcount, recvtype);
1178     }
1179     // Send buffers to receivers
1180     requests = xbt_new(MPI_Request, size - 1);
1181     index = 0;
1182     for(dst = 0; dst < size; dst++) {
1183       if(dst != root) {
1184         requests[index] =
1185           smpi_isend_init((char *)sendbuf + displs[dst] * sendext, sendcounts[dst],
1186                           sendtype, dst, system_tag, comm);
1187         index++;
1188       }
1189     }
1190     // Wait for completion of isend's.
1191     smpi_mpi_startall(size - 1, requests);
1192     smpi_mpi_waitall(size - 1, requests, MPI_STATUS_IGNORE);
1193     xbt_free(requests);
1194   }
1195 }
1196
1197 void smpi_mpi_reduce(void *sendbuf, void *recvbuf, int count,
1198                      MPI_Datatype datatype, MPI_Op op, int root,
1199                      MPI_Comm comm)
1200 {
1201   int system_tag = COLL_TAG_REDUCE;
1202   int rank, size, src, index;
1203   MPI_Aint lb = 0, dataext = 0;
1204   MPI_Request *requests;
1205   void **tmpbufs;
1206
1207
1208   char* sendtmpbuf = (char*) sendbuf;
1209   if( sendbuf == MPI_IN_PLACE ) {
1210     sendtmpbuf = (char *)xbt_malloc(count*smpi_datatype_get_extent(datatype));
1211     smpi_datatype_copy(recvbuf, count, datatype,sendtmpbuf, count, datatype);
1212   }
1213
1214   rank = smpi_comm_rank(comm);
1215   size = smpi_comm_size(comm);
1216   //non commutative case, use a working algo from openmpi
1217   if(!smpi_op_is_commute(op)){
1218     smpi_coll_tuned_reduce_ompi_basic_linear(sendtmpbuf, recvbuf, count,
1219                      datatype, op, root, comm);
1220     return;
1221   }
1222   
1223   if(rank != root) {
1224     // Send buffer to root
1225     smpi_mpi_send(sendtmpbuf, count, datatype, root, system_tag, comm);
1226   } else {
1227     // FIXME: check for errors
1228     smpi_datatype_extent(datatype, &lb, &dataext);
1229     // Local copy from root
1230     if (sendtmpbuf && recvbuf)
1231       smpi_datatype_copy(sendtmpbuf, count, datatype, recvbuf, count, datatype);
1232     // Receive buffers from senders
1233     //TODO: make a MPI_barrier here ?
1234     requests = xbt_new(MPI_Request, size - 1);
1235     tmpbufs = xbt_new(void *, size - 1);
1236     index = 0;
1237     for(src = 0; src < size; src++) {
1238       if(src != root) {
1239         // FIXME: possibly overkill we we have contiguous/noncontiguous data
1240         //  mapping...
1241         tmpbufs[index] = xbt_malloc(count * dataext);
1242         requests[index] =
1243           smpi_irecv_init(tmpbufs[index], count, datatype, src,
1244                           system_tag, comm);
1245         index++;
1246       }
1247     }
1248     // Wait for completion of irecv's.
1249     smpi_mpi_startall(size - 1, requests);
1250     for(src = 0; src < size - 1; src++) {
1251       index = smpi_mpi_waitany(size - 1, requests, MPI_STATUS_IGNORE);
1252       XBT_DEBUG("finished waiting any request with index %d", index);
1253       if(index == MPI_UNDEFINED) {
1254         break;
1255       }
1256       if(op) /* op can be MPI_OP_NULL that does nothing */
1257         smpi_op_apply(op, tmpbufs[index], recvbuf, &count, &datatype);
1258     }
1259     for(index = 0; index < size - 1; index++) {
1260       xbt_free(tmpbufs[index]);
1261     }
1262     xbt_free(tmpbufs);
1263     xbt_free(requests);
1264
1265     if( sendbuf == MPI_IN_PLACE ) {
1266       xbt_free(sendtmpbuf);
1267     }
1268   }
1269 }
1270
1271 void smpi_mpi_allreduce(void *sendbuf, void *recvbuf, int count,
1272                         MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
1273 {
1274   smpi_mpi_reduce(sendbuf, recvbuf, count, datatype, op, 0, comm);
1275   smpi_mpi_bcast(recvbuf, count, datatype, 0, comm);
1276 }
1277
1278 void smpi_mpi_scan(void *sendbuf, void *recvbuf, int count,
1279                    MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
1280 {
1281   int system_tag = -888;
1282   int rank, size, other, index;
1283   MPI_Aint lb = 0, dataext = 0;
1284   MPI_Request *requests;
1285   void **tmpbufs;
1286
1287   rank = smpi_comm_rank(comm);
1288   size = smpi_comm_size(comm);
1289
1290   // FIXME: check for errors
1291   smpi_datatype_extent(datatype, &lb, &dataext);
1292
1293   // Local copy from self
1294   smpi_datatype_copy(sendbuf, count, datatype, recvbuf, count, datatype);
1295
1296   // Send/Recv buffers to/from others;
1297   requests = xbt_new(MPI_Request, size - 1);
1298   tmpbufs = xbt_new(void *, rank);
1299   index = 0;
1300   for(other = 0; other < rank; other++) {
1301     // FIXME: possibly overkill we we have contiguous/noncontiguous data
1302     // mapping...
1303     tmpbufs[index] = xbt_malloc(count * dataext);
1304     requests[index] =
1305       smpi_irecv_init(tmpbufs[index], count, datatype, other, system_tag,
1306                       comm);
1307     index++;
1308   }
1309   for(other = rank + 1; other < size; other++) {
1310     requests[index] =
1311       smpi_isend_init(sendbuf, count, datatype, other, system_tag, comm);
1312     index++;
1313   }
1314   // Wait for completion of all comms.
1315   smpi_mpi_startall(size - 1, requests);
1316
1317   if(smpi_op_is_commute(op)){
1318     for(other = 0; other < size - 1; other++) {
1319       index = smpi_mpi_waitany(size - 1, requests, MPI_STATUS_IGNORE);
1320       if(index == MPI_UNDEFINED) {
1321         break;
1322       }
1323       if(index < rank) {
1324         // #Request is below rank: it's a irecv
1325         smpi_op_apply(op, tmpbufs[index], recvbuf, &count, &datatype);
1326       }
1327     }
1328   }else{
1329     //non commutative case, wait in order
1330     for(other = 0; other < size - 1; other++) {
1331       smpi_mpi_wait(&(requests[other]), MPI_STATUS_IGNORE);
1332       if(index < rank) {
1333         smpi_op_apply(op, tmpbufs[other], recvbuf, &count, &datatype);
1334       }
1335     }
1336   }
1337   for(index = 0; index < rank; index++) {
1338     xbt_free(tmpbufs[index]);
1339   }
1340   xbt_free(tmpbufs);
1341   xbt_free(requests);
1342 }
1343
1344 void smpi_mpi_exscan(void *sendbuf, void *recvbuf, int count,
1345                    MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
1346 {
1347   int system_tag = -888;
1348   int rank, size, other, index;
1349   MPI_Aint lb = 0, dataext = 0;
1350   MPI_Request *requests;
1351   void **tmpbufs;
1352   int recvbuf_is_empty=1;
1353   rank = smpi_comm_rank(comm);
1354   size = smpi_comm_size(comm);
1355
1356   // FIXME: check for errors
1357   smpi_datatype_extent(datatype, &lb, &dataext);
1358
1359   // Send/Recv buffers to/from others;
1360   requests = xbt_new(MPI_Request, size - 1);
1361   tmpbufs = xbt_new(void *, rank);
1362   index = 0;
1363   for(other = 0; other < rank; other++) {
1364     // FIXME: possibly overkill we we have contiguous/noncontiguous data
1365     // mapping...
1366     tmpbufs[index] = xbt_malloc(count * dataext);
1367     requests[index] =
1368       smpi_irecv_init(tmpbufs[index], count, datatype, other, system_tag,
1369                       comm);
1370     index++;
1371   }
1372   for(other = rank + 1; other < size; other++) {
1373     requests[index] =
1374       smpi_isend_init(sendbuf, count, datatype, other, system_tag, comm);
1375     index++;
1376   }
1377   // Wait for completion of all comms.
1378   smpi_mpi_startall(size - 1, requests);
1379   if(smpi_op_is_commute(op)){
1380     for(other = 0; other < size - 1; other++) {
1381       index = smpi_mpi_waitany(size - 1, requests, MPI_STATUS_IGNORE);
1382       if(index == MPI_UNDEFINED) {
1383         break;
1384       }
1385       if(index < rank) {
1386         if(recvbuf_is_empty){
1387           smpi_datatype_copy(tmpbufs[index], count, datatype, recvbuf, count, datatype);
1388           recvbuf_is_empty=0;
1389         }else
1390         // #Request is below rank: it's a irecv
1391         smpi_op_apply(op, tmpbufs[index], recvbuf, &count, &datatype);
1392       }
1393     }
1394   }else{
1395     //non commutative case, wait in order
1396     for(other = 0; other < size - 1; other++) {
1397       smpi_mpi_wait(&(requests[other]), MPI_STATUS_IGNORE);
1398       if(index < rank) {
1399           if(recvbuf_is_empty){
1400             smpi_datatype_copy(tmpbufs[other], count, datatype, recvbuf, count, datatype);
1401             recvbuf_is_empty=0;
1402           }else smpi_op_apply(op, tmpbufs[other], recvbuf, &count, &datatype);
1403       }
1404     }
1405   }
1406   for(index = 0; index < rank; index++) {
1407     xbt_free(tmpbufs[index]);
1408   }
1409   xbt_free(tmpbufs);
1410   xbt_free(requests);
1411 }