Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
enforce a scatter error in some cases
[simgrid.git] / src / smpi / smpi_pmpi.c
1
2 /* Copyright (c) 2007-2014. The SimGrid Team.
3  * All rights reserved.                                                     */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "private.h"
9 #include "smpi_mpi_dt_private.h"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_pmpi, smpi,
12                                 "Logging specific to SMPI (pmpi)");
13
14 #ifdef HAVE_TRACING
15 //this function need to be here because of the calls to smpi_bench
16 void TRACE_smpi_set_category(const char *category)
17 {
18   //need to end bench otherwise categories for execution tasks are wrong
19   smpi_bench_end();
20   TRACE_internal_smpi_set_category (category);
21   //begin bench after changing process's category
22   smpi_bench_begin();
23 }
24 #endif
25
26 /* PMPI User level calls */
27
28 int PMPI_Init(int *argc, char ***argv)
29 {
30   smpi_process_init(argc, argv);
31   smpi_process_mark_as_initialized();
32 #ifdef HAVE_TRACING
33   int rank = smpi_process_index();
34   TRACE_smpi_init(rank);
35   TRACE_smpi_computing_init(rank);
36   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
37   extra->type = TRACING_INIT;
38   TRACE_smpi_collective_in(rank, -1, __FUNCTION__, extra);
39   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
40 #endif
41   smpi_bench_begin();
42   return MPI_SUCCESS;
43 }
44
45 int PMPI_Finalize(void)
46 {
47   smpi_bench_end();
48 #ifdef HAVE_TRACING
49   int rank = smpi_process_index();
50   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
51   extra->type = TRACING_FINALIZE;
52   TRACE_smpi_collective_in(rank, -1, __FUNCTION__, extra);
53 #endif
54   smpi_process_finalize();
55 #ifdef HAVE_TRACING
56   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
57   TRACE_smpi_finalize(smpi_process_index());
58 #endif
59   smpi_process_destroy();
60   return MPI_SUCCESS;
61 }
62
63 int PMPI_Finalized(int* flag)
64 {
65   *flag=smpi_process_finalized();
66   return MPI_SUCCESS;
67 }
68
69 int PMPI_Get_version (int *version,int *subversion){
70   *version = MPI_VERSION;
71   *subversion= MPI_SUBVERSION;
72   return MPI_SUCCESS;
73 }
74
75 int PMPI_Get_library_version (char *version,int *len){
76   int retval = MPI_SUCCESS;
77   smpi_bench_end();
78   snprintf(version,MPI_MAX_LIBRARY_VERSION_STRING,"SMPI Version %d.%d. Copyright The Simgrid Team 2007-2014",SIMGRID_VERSION_MAJOR,
79           SIMGRID_VERSION_MINOR);
80   *len = strlen(version) > MPI_MAX_LIBRARY_VERSION_STRING ? MPI_MAX_LIBRARY_VERSION_STRING : strlen(version);
81   smpi_bench_begin();
82   return retval;
83 }
84
85 int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided)
86 {
87   if (provided != NULL) {
88     *provided = MPI_THREAD_MULTIPLE;
89   }
90   return MPI_Init(argc, argv);
91 }
92
93 int PMPI_Query_thread(int *provided)
94 {
95   int retval = 0;
96
97   if (provided == NULL) {
98     retval = MPI_ERR_ARG;
99   } else {
100     *provided = MPI_THREAD_MULTIPLE;
101     retval = MPI_SUCCESS;
102   }
103   return retval;
104 }
105
106 int PMPI_Is_thread_main(int *flag)
107 {
108   int retval = 0;
109
110   if (flag == NULL) {
111     retval = MPI_ERR_ARG;
112   } else {
113     *flag = smpi_process_index() == 0;
114     retval = MPI_SUCCESS;
115   }
116   return retval;
117 }
118
119 int PMPI_Abort(MPI_Comm comm, int errorcode)
120 {
121   smpi_bench_end();
122   smpi_process_destroy();
123   // FIXME: should kill all processes in comm instead
124   simcall_process_kill(SIMIX_process_self());
125   return MPI_SUCCESS;
126 }
127
128 double PMPI_Wtime(void)
129 {
130   return smpi_mpi_wtime();
131 }
132
133 extern double sg_maxmin_precision;
134 double PMPI_Wtick(void)
135 {
136   return sg_maxmin_precision;
137 }
138
139 int PMPI_Address(void *location, MPI_Aint * address)
140 {
141   int retval = 0;
142
143   if (!address) {
144     retval = MPI_ERR_ARG;
145   } else {
146     *address = (MPI_Aint) location;
147     retval = MPI_SUCCESS;
148   }
149   return retval;
150 }
151
152 int PMPI_Get_address(void *location, MPI_Aint * address)
153 {
154   return PMPI_Address(location, address);
155 }
156
157 int PMPI_Type_free(MPI_Datatype * datatype)
158 {
159   int retval = 0;
160   /* Free a predefined datatype is an error according to the standard, and
161      should be checked for */
162   if (*datatype == MPI_DATATYPE_NULL) {
163     retval = MPI_ERR_ARG;
164   } else {
165     smpi_datatype_free(datatype);
166     retval = MPI_SUCCESS;
167   }
168   return retval;
169 }
170
171 int PMPI_Type_size(MPI_Datatype datatype, int *size)
172 {
173   int retval = 0;
174
175   if (datatype == MPI_DATATYPE_NULL) {
176     retval = MPI_ERR_TYPE;
177   } else if (size == NULL) {
178     retval = MPI_ERR_ARG;
179   } else {
180     *size = (int) smpi_datatype_size(datatype);
181     retval = MPI_SUCCESS;
182   }
183   return retval;
184 }
185
186 int PMPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent)
187 {
188   int retval = 0;
189
190   if (datatype == MPI_DATATYPE_NULL) {
191     retval = MPI_ERR_TYPE;
192   } else if (lb == NULL || extent == NULL) {
193     retval = MPI_ERR_ARG;
194   } else {
195     retval = smpi_datatype_extent(datatype, lb, extent);
196   }
197   return retval;
198 }
199
200 int PMPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent)
201 {
202   return PMPI_Type_get_extent(datatype, lb, extent);
203 }
204
205 int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint * extent)
206 {
207   int retval = 0;
208
209   if (datatype == MPI_DATATYPE_NULL) {
210     retval = MPI_ERR_TYPE;
211   } else if (extent == NULL) {
212     retval = MPI_ERR_ARG;
213   } else {
214     *extent = smpi_datatype_get_extent(datatype);
215     retval = MPI_SUCCESS;
216   }
217   return retval;
218 }
219
220 int PMPI_Type_lb(MPI_Datatype datatype, MPI_Aint * disp)
221 {
222   int retval = 0;
223
224   if (datatype == MPI_DATATYPE_NULL) {
225     retval = MPI_ERR_TYPE;
226   } else if (disp == NULL) {
227     retval = MPI_ERR_ARG;
228   } else {
229     *disp = smpi_datatype_lb(datatype);
230     retval = MPI_SUCCESS;
231   }
232   return retval;
233 }
234
235 int PMPI_Type_ub(MPI_Datatype datatype, MPI_Aint * disp)
236 {
237   int retval = 0;
238
239   if (datatype == MPI_DATATYPE_NULL) {
240     retval = MPI_ERR_TYPE;
241   } else if (disp == NULL) {
242     retval = MPI_ERR_ARG;
243   } else {
244     *disp = smpi_datatype_ub(datatype);
245     retval = MPI_SUCCESS;
246   }
247   return retval;
248 }
249
250 int PMPI_Type_dup(MPI_Datatype datatype, MPI_Datatype *newtype){
251   int retval = 0;
252
253   if (datatype == MPI_DATATYPE_NULL) {
254     retval = MPI_ERR_TYPE;
255   } else {
256     *newtype = smpi_datatype_dup(datatype);
257     retval = MPI_SUCCESS;
258   }
259   return retval;
260 }
261
262 int PMPI_Op_create(MPI_User_function * function, int commute, MPI_Op * op)
263 {
264   int retval = 0;
265
266   if (function == NULL || op == NULL) {
267     retval = MPI_ERR_ARG;
268   } else {
269     *op = smpi_op_new(function, commute);
270     retval = MPI_SUCCESS;
271   }
272   return retval;
273 }
274
275 int PMPI_Op_free(MPI_Op * op)
276 {
277   int retval = 0;
278
279   if (op == NULL) {
280     retval = MPI_ERR_ARG;
281   } else if (*op == MPI_OP_NULL) {
282     retval = MPI_ERR_OP;
283   } else {
284     smpi_op_destroy(*op);
285     *op = MPI_OP_NULL;
286     retval = MPI_SUCCESS;
287   }
288   return retval;
289 }
290
291 int PMPI_Group_free(MPI_Group * group)
292 {
293   int retval = 0;
294
295   if (group == NULL) {
296     retval = MPI_ERR_ARG;
297   } else {
298     smpi_group_destroy(*group);
299     *group = MPI_GROUP_NULL;
300     retval = MPI_SUCCESS;
301   }
302   return retval;
303 }
304
305 int PMPI_Group_size(MPI_Group group, int *size)
306 {
307   int retval = 0;
308
309   if (group == MPI_GROUP_NULL) {
310     retval = MPI_ERR_GROUP;
311   } else if (size == NULL) {
312     retval = MPI_ERR_ARG;
313   } else {
314     *size = smpi_group_size(group);
315     retval = MPI_SUCCESS;
316   }
317   return retval;
318 }
319
320 int PMPI_Group_rank(MPI_Group group, int *rank)
321 {
322   int retval = 0;
323
324   if (group == MPI_GROUP_NULL) {
325     retval = MPI_ERR_GROUP;
326   } else if (rank == NULL) {
327     retval = MPI_ERR_ARG;
328   } else {
329     *rank = smpi_group_rank(group, smpi_process_index());
330     retval = MPI_SUCCESS;
331   }
332   return retval;
333 }
334
335 int PMPI_Group_translate_ranks(MPI_Group group1, int n, int *ranks1,
336                               MPI_Group group2, int *ranks2)
337 {
338   int retval, i, index;
339   if (group1 == MPI_GROUP_NULL || group2 == MPI_GROUP_NULL) {
340     retval = MPI_ERR_GROUP;
341   } else {
342     for (i = 0; i < n; i++) {
343       if(ranks1[i]==MPI_PROC_NULL){
344         ranks2[i]=MPI_PROC_NULL;
345       }else{
346         index = smpi_group_index(group1, ranks1[i]);
347         ranks2[i] = smpi_group_rank(group2, index);
348       }
349     }
350     retval = MPI_SUCCESS;
351   }
352   return retval;
353 }
354
355 int PMPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result)
356 {
357   int retval = 0;
358
359   if (group1 == MPI_GROUP_NULL || group2 == MPI_GROUP_NULL) {
360     retval = MPI_ERR_GROUP;
361   } else if (result == NULL) {
362     retval = MPI_ERR_ARG;
363   } else {
364     *result = smpi_group_compare(group1, group2);
365     retval = MPI_SUCCESS;
366   }
367   return retval;
368 }
369
370 int PMPI_Group_union(MPI_Group group1, MPI_Group group2,
371                     MPI_Group * newgroup)
372 {
373   int retval, i, proc1, proc2, size, size2;
374
375   if (group1 == MPI_GROUP_NULL || group2 == MPI_GROUP_NULL) {
376     retval = MPI_ERR_GROUP;
377   } else if (newgroup == NULL) {
378     retval = MPI_ERR_ARG;
379   } else {
380     size = smpi_group_size(group1);
381     size2 = smpi_group_size(group2);
382     for (i = 0; i < size2; i++) {
383       proc2 = smpi_group_index(group2, i);
384       proc1 = smpi_group_rank(group1, proc2);
385       if (proc1 == MPI_UNDEFINED) {
386         size++;
387       }
388     }
389     if (size == 0) {
390       *newgroup = MPI_GROUP_EMPTY;
391     } else {
392       *newgroup = smpi_group_new(size);
393       size2 = smpi_group_size(group1);
394       for (i = 0; i < size2; i++) {
395         proc1 = smpi_group_index(group1, i);
396         smpi_group_set_mapping(*newgroup, proc1, i);
397       }
398       for (i = size2; i < size; i++) {
399         proc2 = smpi_group_index(group2, i - size2);
400         smpi_group_set_mapping(*newgroup, proc2, i);
401       }
402     }
403     retval = MPI_SUCCESS;
404   }
405   return retval;
406 }
407
408 int PMPI_Group_intersection(MPI_Group group1, MPI_Group group2,
409                            MPI_Group * newgroup)
410 {
411   int retval, i, proc1, proc2, size;
412
413   if (group1 == MPI_GROUP_NULL || group2 == MPI_GROUP_NULL) {
414     retval = MPI_ERR_GROUP;
415   } else if (newgroup == NULL) {
416     retval = MPI_ERR_ARG;
417   } else {
418     size = smpi_group_size(group2);
419     for (i = 0; i < size; i++) {
420       proc2 = smpi_group_index(group2, i);
421       proc1 = smpi_group_rank(group1, proc2);
422       if (proc1 == MPI_UNDEFINED) {
423         size--;
424       }
425     }
426     if (size == 0) {
427       *newgroup = MPI_GROUP_EMPTY;
428     } else {
429       *newgroup = smpi_group_new(size);
430       int j=0;
431       for (i = 0; i < smpi_group_size(group2); i++) {
432         proc2 = smpi_group_index(group2, i);
433         proc1 = smpi_group_rank(group1, proc2);
434         if (proc1 != MPI_UNDEFINED) {
435           smpi_group_set_mapping(*newgroup, proc2, j);
436           j++;
437         }
438       }
439     }
440     retval = MPI_SUCCESS;
441   }
442   return retval;
443 }
444
445 int PMPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group * newgroup)
446 {
447   int retval, i, proc1, proc2, size, size2;
448
449   if (group1 == MPI_GROUP_NULL || group2 == MPI_GROUP_NULL) {
450     retval = MPI_ERR_GROUP;
451   } else if (newgroup == NULL) {
452     retval = MPI_ERR_ARG;
453   } else {
454     size = size2 = smpi_group_size(group1);
455     for (i = 0; i < size2; i++) {
456       proc1 = smpi_group_index(group1, i);
457       proc2 = smpi_group_rank(group2, proc1);
458       if (proc2 != MPI_UNDEFINED) {
459         size--;
460       }
461     }
462     if (size == 0) {
463       *newgroup = MPI_GROUP_EMPTY;
464     } else {
465       *newgroup = smpi_group_new(size);
466       for (i = 0; i < size2; i++) {
467         proc1 = smpi_group_index(group1, i);
468         proc2 = smpi_group_rank(group2, proc1);
469         if (proc2 == MPI_UNDEFINED) {
470           smpi_group_set_mapping(*newgroup, proc1, i);
471         }
472       }
473     }
474     retval = MPI_SUCCESS;
475   }
476   return retval;
477 }
478
479 int PMPI_Group_incl(MPI_Group group, int n, int *ranks, MPI_Group * newgroup)
480 {
481   int retval, i, index;
482
483   if (group == MPI_GROUP_NULL) {
484     retval = MPI_ERR_GROUP;
485   } else if (newgroup == NULL) {
486     retval = MPI_ERR_ARG;
487   } else {
488     if (n == 0) {
489       *newgroup = MPI_GROUP_EMPTY;
490     } else if (n == smpi_group_size(group)) {
491       *newgroup = group;
492       if(group!= smpi_comm_group(MPI_COMM_WORLD)
493                 && group != MPI_GROUP_NULL
494                 && group != smpi_comm_group(MPI_COMM_SELF)
495                 && group != MPI_GROUP_EMPTY)
496       smpi_group_use(group);
497     } else {
498       *newgroup = smpi_group_new(n);
499       for (i = 0; i < n; i++) {
500         index = smpi_group_index(group, ranks[i]);
501         smpi_group_set_mapping(*newgroup, index, i);
502       }
503     }
504     retval = MPI_SUCCESS;
505   }
506   return retval;
507 }
508
509 int PMPI_Group_excl(MPI_Group group, int n, int *ranks, MPI_Group * newgroup)
510 {
511   int retval, i, j, newsize, oldsize, index;
512
513   if (group == MPI_GROUP_NULL) {
514     retval = MPI_ERR_GROUP;
515   } else if (newgroup == NULL) {
516     retval = MPI_ERR_ARG;
517   } else {
518     if (n == 0) {
519       *newgroup = group;
520       if(group!= smpi_comm_group(MPI_COMM_WORLD)
521                 && group != MPI_GROUP_NULL
522                 && group != smpi_comm_group(MPI_COMM_SELF)
523                 && group != MPI_GROUP_EMPTY)
524       smpi_group_use(group);
525     } else if (n == smpi_group_size(group)) {
526       *newgroup = MPI_GROUP_EMPTY;
527     } else {
528       oldsize=smpi_group_size(group);
529       newsize = oldsize - n;
530       *newgroup = smpi_group_new(newsize);
531
532       int* to_exclude=xbt_new0(int, smpi_group_size(group));
533       for(i=0; i<oldsize; i++)
534         to_exclude[i]=0;
535       for(i=0; i<n; i++)
536         to_exclude[ranks[i]]=1;
537
538       j=0;
539       for(i=0; i<oldsize; i++){
540         if(to_exclude[i]==0){
541           index = smpi_group_index(group, i);
542           smpi_group_set_mapping(*newgroup, index, j);
543           j++;
544         }
545       }
546
547       xbt_free(to_exclude);
548     }
549     retval = MPI_SUCCESS;
550   }
551   return retval;
552 }
553
554 int PMPI_Group_range_incl(MPI_Group group, int n, int ranges[][3],
555                          MPI_Group * newgroup)
556 {
557   int retval, i, j, rank, size, index;
558
559   if (group == MPI_GROUP_NULL) {
560     retval = MPI_ERR_GROUP;
561   } else if (newgroup == NULL) {
562     retval = MPI_ERR_ARG;
563   } else {
564     if (n == 0) {
565       *newgroup = MPI_GROUP_EMPTY;
566     } else {
567       size = 0;
568       for (i = 0; i < n; i++) {
569         for (rank = ranges[i][0];       /* First */
570              rank >= 0; /* Last */
571               ) {
572           size++;
573
574           rank += ranges[i][2]; /* Stride */
575           if (ranges[i][0]<ranges[i][1]){
576               if(rank > ranges[i][1])
577                 break;
578           }else{
579               if(rank < ranges[i][1])
580                 break;
581           }
582         }
583       }
584
585       *newgroup = smpi_group_new(size);
586       j = 0;
587       for (i = 0; i < n; i++) {
588         for (rank = ranges[i][0];     /* First */
589              rank >= 0; /* Last */
590              ) {
591           index = smpi_group_index(group, rank);
592           smpi_group_set_mapping(*newgroup, index, j);
593           j++;
594           rank += ranges[i][2]; /* Stride */
595           if (ranges[i][0]<ranges[i][1]){
596             if(rank > ranges[i][1])
597               break;
598           }else{
599             if(rank < ranges[i][1])
600               break;
601           }
602         }
603       }
604     }
605     retval = MPI_SUCCESS;
606   }
607   return retval;
608 }
609
610 int PMPI_Group_range_excl(MPI_Group group, int n, int ranges[][3],
611                          MPI_Group * newgroup)
612 {
613   int retval, i, rank, newrank,oldrank, size, index, add;
614
615   if (group == MPI_GROUP_NULL) {
616     retval = MPI_ERR_GROUP;
617   } else if (newgroup == NULL) {
618     retval = MPI_ERR_ARG;
619   } else {
620     if (n == 0) {
621       *newgroup = group;
622       if(group!= smpi_comm_group(MPI_COMM_WORLD)
623                 && group != MPI_GROUP_NULL
624                 && group != smpi_comm_group(MPI_COMM_SELF)
625                 && group != MPI_GROUP_EMPTY)
626       smpi_group_use(group);
627     } else {
628       size = smpi_group_size(group);
629       for (i = 0; i < n; i++) {
630         for (rank = ranges[i][0];       /* First */
631              rank >= 0; /* Last */
632               ) {
633           size--;
634
635           rank += ranges[i][2]; /* Stride */
636           if (ranges[i][0]<ranges[i][1]){
637               if(rank > ranges[i][1])
638                 break;
639           }else{
640               if(rank < ranges[i][1])
641                 break;
642           }
643         }
644       }
645       if (size == 0) {
646         *newgroup = MPI_GROUP_EMPTY;
647       } else {
648         *newgroup = smpi_group_new(size);
649         newrank=0;
650         oldrank=0;
651         while (newrank < size) {
652           add=1;
653           for (i = 0; i < n; i++) {
654             for (rank = ranges[i][0];rank >= 0;){
655               if(rank==oldrank){
656                   add=0;
657                   break;
658               }
659
660               rank += ranges[i][2]; /* Stride */
661
662               if (ranges[i][0]<ranges[i][1]){
663                   if(rank > ranges[i][1])
664                     break;
665               }else{
666                   if(rank < ranges[i][1])
667                     break;
668               }
669             }
670           }
671           if(add==1){
672             index = smpi_group_index(group, oldrank);
673             smpi_group_set_mapping(*newgroup, index, newrank);
674             newrank++;
675           }
676           oldrank++;
677         }
678       }
679     }
680
681     retval = MPI_SUCCESS;
682   }
683   return retval;
684 }
685
686 int PMPI_Comm_rank(MPI_Comm comm, int *rank)
687 {
688   int retval = 0;
689   if (comm == MPI_COMM_NULL) {
690     retval = MPI_ERR_COMM;
691   } else if (rank == NULL) {
692     retval = MPI_ERR_ARG;
693   } else {
694     *rank = smpi_comm_rank(comm);
695     retval = MPI_SUCCESS;
696   }
697   return retval;
698 }
699
700 int PMPI_Comm_size(MPI_Comm comm, int *size)
701 {
702   int retval = 0;
703   if (comm == MPI_COMM_NULL) {
704     retval = MPI_ERR_COMM;
705   } else if (size == NULL) {
706     retval = MPI_ERR_ARG;
707   } else {
708     *size = smpi_comm_size(comm);
709     retval = MPI_SUCCESS;
710   }
711   return retval;
712 }
713
714 int PMPI_Comm_get_name (MPI_Comm comm, char* name, int* len)
715 {
716   int retval = 0;
717
718   if (comm == MPI_COMM_NULL)  {
719     retval = MPI_ERR_COMM;
720   } else if (name == NULL || len == NULL)  {
721     retval = MPI_ERR_ARG;
722   } else {
723     smpi_comm_get_name(comm, name, len);
724     retval = MPI_SUCCESS;
725   }
726   return retval;
727 }
728
729 int PMPI_Comm_group(MPI_Comm comm, MPI_Group * group)
730 {
731   int retval = 0;
732
733   if (comm == MPI_COMM_NULL) {
734     retval = MPI_ERR_COMM;
735   } else if (group == NULL) {
736     retval = MPI_ERR_ARG;
737   } else {
738     *group = smpi_comm_group(comm);
739     if(*group!= smpi_comm_group(MPI_COMM_WORLD)
740               && *group != MPI_GROUP_NULL
741               && *group != smpi_comm_group(MPI_COMM_SELF)
742               && *group != MPI_GROUP_EMPTY)
743     smpi_group_use(*group);
744     retval = MPI_SUCCESS;
745   }
746   return retval;
747 }
748
749 int PMPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result)
750 {
751   int retval = 0;
752
753   if (comm1 == MPI_COMM_NULL || comm2 == MPI_COMM_NULL) {
754     retval = MPI_ERR_COMM;
755   } else if (result == NULL) {
756     retval = MPI_ERR_ARG;
757   } else {
758     if (comm1 == comm2) {       /* Same communicators means same groups */
759       *result = MPI_IDENT;
760     } else {
761       *result =
762           smpi_group_compare(smpi_comm_group(comm1),
763                              smpi_comm_group(comm2));
764       if (*result == MPI_IDENT) {
765         *result = MPI_CONGRUENT;
766       }
767     }
768     retval = MPI_SUCCESS;
769   }
770   return retval;
771 }
772
773 int PMPI_Comm_dup(MPI_Comm comm, MPI_Comm * newcomm)
774 {
775   int retval = 0;
776
777   if (comm == MPI_COMM_NULL) {
778     retval = MPI_ERR_COMM;
779   } else if (newcomm == NULL) {
780     retval = MPI_ERR_ARG;
781   } else {
782     *newcomm = smpi_comm_new(smpi_comm_group(comm), smpi_comm_topo(comm));
783     retval = MPI_SUCCESS;
784   }
785   return retval;
786 }
787
788 int PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm * newcomm)
789 {
790   int retval = 0;
791
792   if (comm == MPI_COMM_NULL) {
793     retval = MPI_ERR_COMM;
794   } else if (group == MPI_GROUP_NULL) {
795     retval = MPI_ERR_GROUP;
796   } else if (newcomm == NULL) {
797     retval = MPI_ERR_ARG;
798   } else if(smpi_group_rank(group,smpi_process_index())==MPI_UNDEFINED){
799     *newcomm= MPI_COMM_NULL;
800     retval = MPI_SUCCESS;
801   }else{
802
803     *newcomm = smpi_comm_new(group, NULL);
804     retval = MPI_SUCCESS;
805   }
806   return retval;
807 }
808
809 int PMPI_Comm_free(MPI_Comm * comm)
810 {
811   int retval = 0;
812
813   if (comm == NULL) {
814     retval = MPI_ERR_ARG;
815   } else if (*comm == MPI_COMM_NULL) {
816     retval = MPI_ERR_COMM;
817   } else {
818     smpi_comm_destroy(*comm);
819     *comm = MPI_COMM_NULL;
820     retval = MPI_SUCCESS;
821   }
822   return retval;
823 }
824
825 int PMPI_Comm_disconnect(MPI_Comm * comm)
826 {
827   /* TODO: wait until all communication in comm are done */
828   int retval = 0;
829
830   if (comm == NULL) {
831     retval = MPI_ERR_ARG;
832   } else if (*comm == MPI_COMM_NULL) {
833     retval = MPI_ERR_COMM;
834   } else {
835     smpi_comm_destroy(*comm);
836     *comm = MPI_COMM_NULL;
837     retval = MPI_SUCCESS;
838   }
839   return retval;
840 }
841
842 int PMPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm* comm_out)
843 {
844   int retval = 0;
845   smpi_bench_end();
846
847   if (comm_out == NULL) {
848     retval = MPI_ERR_ARG;
849   } else if (comm == MPI_COMM_NULL) {
850     retval = MPI_ERR_COMM;
851   } else {
852     *comm_out = smpi_comm_split(comm, color, key);
853     retval = MPI_SUCCESS;
854   }
855   smpi_bench_begin();
856
857   return retval;
858 }
859
860 int PMPI_Send_init(void *buf, int count, MPI_Datatype datatype, int dst,
861                    int tag, MPI_Comm comm, MPI_Request * request)
862 {
863   int retval = 0;
864
865   smpi_bench_end();
866   if (request == NULL) {
867       retval = MPI_ERR_ARG;
868   } else if (comm == MPI_COMM_NULL) {
869       retval = MPI_ERR_COMM;
870   } else if (!is_datatype_valid(datatype)) {
871       retval = MPI_ERR_TYPE;
872   } else if (dst == MPI_PROC_NULL) {
873       retval = MPI_SUCCESS;
874   } else {
875       *request = smpi_mpi_send_init(buf, count, datatype, dst, tag, comm);
876       retval = MPI_SUCCESS;
877   }
878   smpi_bench_begin();
879   if (retval != MPI_SUCCESS && request)
880     *request = MPI_REQUEST_NULL;
881   return retval;
882 }
883
884 int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int src,
885                    int tag, MPI_Comm comm, MPI_Request * request)
886 {
887   int retval = 0;
888
889   smpi_bench_end();
890   if (request == NULL) {
891     retval = MPI_ERR_ARG;
892   } else if (comm == MPI_COMM_NULL) {
893     retval = MPI_ERR_COMM;
894   } else if (!is_datatype_valid(datatype)) {
895       retval = MPI_ERR_TYPE;
896   } else if (src == MPI_PROC_NULL) {
897     retval = MPI_SUCCESS;
898   } else {
899     *request = smpi_mpi_recv_init(buf, count, datatype, src, tag, comm);
900     retval = MPI_SUCCESS;
901   }
902   smpi_bench_begin();
903   if (retval != MPI_SUCCESS && request)
904     *request = MPI_REQUEST_NULL;
905   return retval;
906 }
907
908 int PMPI_Ssend_init(void* buf, int count, MPI_Datatype datatype,
909                     int dst, int tag, MPI_Comm comm, MPI_Request* request)
910 {
911   int retval = 0;
912
913   smpi_bench_end();
914   if (request == NULL) {
915     retval = MPI_ERR_ARG;
916   } else if (comm == MPI_COMM_NULL) {
917     retval = MPI_ERR_COMM;
918   } else if (!is_datatype_valid(datatype)) {
919       retval = MPI_ERR_TYPE;
920   } else if (dst == MPI_PROC_NULL) {
921     retval = MPI_SUCCESS;
922   } else {
923     *request = smpi_mpi_ssend_init(buf, count, datatype, dst, tag, comm);
924     retval = MPI_SUCCESS;
925   }
926   smpi_bench_begin();
927   if (retval != MPI_SUCCESS && request)
928     *request = MPI_REQUEST_NULL;
929   return retval;
930 }
931
932 int PMPI_Start(MPI_Request * request)
933 {
934   int retval = 0;
935
936   smpi_bench_end();
937   if (request == NULL || *request == MPI_REQUEST_NULL) {
938     retval = MPI_ERR_REQUEST;
939   } else {
940     smpi_mpi_start(*request);
941     retval = MPI_SUCCESS;
942   }
943   smpi_bench_begin();
944   return retval;
945 }
946
947 int PMPI_Startall(int count, MPI_Request * requests)
948 {
949   int retval;
950   int i = 0;
951   smpi_bench_end();
952   if (requests == NULL) {
953     retval = MPI_ERR_ARG;
954   } else {
955     retval = MPI_SUCCESS;
956     for (i = 0 ;  i < count ; i++) {
957       if(requests[i] == MPI_REQUEST_NULL) {
958         retval = MPI_ERR_REQUEST;
959       }
960     }
961     if(retval != MPI_ERR_REQUEST) {
962       smpi_mpi_startall(count, requests);
963     }
964   }
965   smpi_bench_begin();
966   return retval;
967 }
968
969 int PMPI_Request_free(MPI_Request * request)
970 {
971   int retval = 0;
972
973   smpi_bench_end();
974   if (*request == MPI_REQUEST_NULL) {
975     retval = MPI_ERR_ARG;
976   } else {
977     smpi_mpi_request_free(request);
978     retval = MPI_SUCCESS;
979   }
980   smpi_bench_begin();
981   return retval;
982 }
983
984 int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src,
985                int tag, MPI_Comm comm, MPI_Request * request)
986 {
987   int retval = 0;
988
989   smpi_bench_end();
990
991   if (request == NULL) {
992     retval = MPI_ERR_ARG;
993   } else if (comm == MPI_COMM_NULL) {
994     retval = MPI_ERR_COMM;
995   } else if (src == MPI_PROC_NULL) {
996     *request = MPI_REQUEST_NULL;
997     retval = MPI_SUCCESS;
998   } else if (src!=MPI_ANY_SOURCE && (src >= smpi_group_size(smpi_comm_group(comm)) || src <0)){
999     retval = MPI_ERR_RANK;
1000   } else if (count < 0) {
1001     retval = MPI_ERR_COUNT;
1002   } else if (buf==NULL && count > 0) {
1003     retval = MPI_ERR_COUNT;
1004   } else if (!is_datatype_valid(datatype)) {
1005       retval = MPI_ERR_TYPE;
1006   } else if(tag<0 && tag !=  MPI_ANY_TAG){
1007     retval = MPI_ERR_TAG;
1008   } else {
1009
1010 #ifdef HAVE_TRACING
1011     int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1012     int src_traced = smpi_group_index(smpi_comm_group(comm), src);
1013
1014     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1015     extra->type = TRACING_IRECV;
1016     extra->send_size = count;
1017     extra->src = src_traced;
1018     extra->dst = rank;
1019     extra->datatype1 = encode_datatype(datatype);
1020     TRACE_smpi_ptp_in(rank, src_traced, rank, __FUNCTION__, extra);
1021 #endif
1022
1023     *request = smpi_mpi_irecv(buf, count, datatype, src, tag, comm);
1024     retval = MPI_SUCCESS;
1025
1026 #ifdef HAVE_TRACING
1027     TRACE_smpi_ptp_out(rank, src_traced, rank, __FUNCTION__);
1028     (*request)->recv = 1;
1029 #endif
1030   }
1031
1032   smpi_bench_begin();
1033   if (retval != MPI_SUCCESS && request)
1034     *request = MPI_REQUEST_NULL;
1035   return retval;
1036 }
1037
1038
1039 int PMPI_Isend(void *buf, int count, MPI_Datatype datatype, int dst,
1040                int tag, MPI_Comm comm, MPI_Request * request)
1041 {
1042   int retval = 0;
1043
1044   smpi_bench_end();
1045   if (request == NULL) {
1046     retval = MPI_ERR_ARG;
1047   } else if (comm == MPI_COMM_NULL) {
1048     retval = MPI_ERR_COMM;
1049   } else if (dst == MPI_PROC_NULL) {
1050     *request = MPI_REQUEST_NULL;
1051     retval = MPI_SUCCESS;
1052   } else if (dst >= smpi_group_size(smpi_comm_group(comm)) || dst <0){
1053     retval = MPI_ERR_RANK;
1054   } else if (count < 0) {
1055     retval = MPI_ERR_COUNT;
1056   } else if (buf==NULL && count > 0) {
1057     retval = MPI_ERR_COUNT;
1058   } else if (!is_datatype_valid(datatype)) {
1059       retval = MPI_ERR_TYPE;
1060   } else if(tag<0 && tag !=  MPI_ANY_TAG){
1061     retval = MPI_ERR_TAG;
1062   } else {
1063
1064 #ifdef HAVE_TRACING
1065     int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1066     int dst_traced = smpi_group_index(smpi_comm_group(comm), dst);
1067
1068     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1069     extra->type = TRACING_ISEND;
1070     extra->send_size = count;
1071     extra->src = rank;
1072     extra->dst = dst_traced;
1073     extra->datatype1 = encode_datatype(datatype);
1074     TRACE_smpi_ptp_in(rank, rank, dst_traced, __FUNCTION__, extra);
1075     TRACE_smpi_send(rank, rank, dst_traced, count*smpi_datatype_size(datatype));
1076 #endif
1077
1078     *request = smpi_mpi_isend(buf, count, datatype, dst, tag, comm);
1079     retval = MPI_SUCCESS;
1080
1081 #ifdef HAVE_TRACING
1082     TRACE_smpi_ptp_out(rank, rank, dst_traced, __FUNCTION__);
1083     (*request)->send = 1;
1084 #endif
1085   }
1086
1087   smpi_bench_begin();
1088   if (retval != MPI_SUCCESS && request)
1089     *request = MPI_REQUEST_NULL;
1090   return retval;
1091 }
1092
1093 int PMPI_Issend(void* buf, int count, MPI_Datatype datatype,
1094                 int dst, int tag, MPI_Comm comm, MPI_Request* request)
1095 {
1096   int retval = 0;
1097
1098   smpi_bench_end();
1099   if (request == NULL) {
1100     retval = MPI_ERR_ARG;
1101   } else if (comm == MPI_COMM_NULL) {
1102     retval = MPI_ERR_COMM;
1103   } else if (dst == MPI_PROC_NULL) {
1104     *request = MPI_REQUEST_NULL;
1105     retval = MPI_SUCCESS;
1106   } else if (dst >= smpi_group_size(smpi_comm_group(comm)) || dst <0){
1107     retval = MPI_ERR_RANK;
1108   } else if (count < 0) {
1109     retval = MPI_ERR_COUNT;
1110   } else if (buf==NULL && count > 0) {
1111     retval = MPI_ERR_COUNT;
1112   } else if (!is_datatype_valid(datatype)) {
1113       retval = MPI_ERR_TYPE;
1114   } else if(tag<0 && tag !=  MPI_ANY_TAG){
1115     retval = MPI_ERR_TAG;
1116   } else {
1117
1118 #ifdef HAVE_TRACING
1119     int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1120     int dst_traced = smpi_group_index(smpi_comm_group(comm), dst);
1121     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1122     extra->type = TRACING_ISSEND;
1123     extra->send_size = count;
1124     extra->src = rank;
1125     extra->dst = dst_traced;
1126     extra->datatype1 = encode_datatype(datatype);
1127     TRACE_smpi_ptp_in(rank, rank, dst_traced, __FUNCTION__, extra);
1128     TRACE_smpi_send(rank, rank, dst_traced, count*smpi_datatype_size(datatype));
1129 #endif
1130
1131     *request = smpi_mpi_issend(buf, count, datatype, dst, tag, comm);
1132     retval = MPI_SUCCESS;
1133
1134 #ifdef HAVE_TRACING
1135     TRACE_smpi_ptp_out(rank, rank, dst_traced, __FUNCTION__);
1136     (*request)->send = 1;
1137 #endif
1138   }
1139
1140   smpi_bench_begin();
1141   if (retval != MPI_SUCCESS && request)
1142     *request = MPI_REQUEST_NULL;
1143   return retval;
1144 }
1145
1146 int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag,
1147              MPI_Comm comm, MPI_Status * status)
1148 {
1149   int retval = 0;
1150
1151   smpi_bench_end();
1152   if (comm == MPI_COMM_NULL) {
1153     retval = MPI_ERR_COMM;
1154   } else if (src == MPI_PROC_NULL) {
1155     smpi_empty_status(status);
1156     status->MPI_SOURCE = MPI_PROC_NULL;
1157     retval = MPI_SUCCESS;
1158   } else if (src!=MPI_ANY_SOURCE && (src >= smpi_group_size(smpi_comm_group(comm)) || src <0)){
1159     retval = MPI_ERR_RANK;
1160   } else if (count < 0) {
1161     retval = MPI_ERR_COUNT;
1162   } else if (buf==NULL && count > 0) {
1163     retval = MPI_ERR_COUNT;
1164   } else if (!is_datatype_valid(datatype)) {
1165       retval = MPI_ERR_TYPE;
1166   } else if(tag<0 && tag !=  MPI_ANY_TAG){
1167     retval = MPI_ERR_TAG;
1168   } else {
1169 #ifdef HAVE_TRACING
1170   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1171   int src_traced = smpi_group_index(smpi_comm_group(comm), src);
1172   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1173   extra->type = TRACING_RECV;
1174   extra->send_size = count;
1175   extra->src = src_traced;
1176   extra->dst = rank;
1177   extra->datatype1 = encode_datatype(datatype);
1178   TRACE_smpi_ptp_in(rank, src_traced, rank, __FUNCTION__, extra);
1179 #endif
1180
1181     smpi_mpi_recv(buf, count, datatype, src, tag, comm, status);
1182     retval = MPI_SUCCESS;
1183
1184 #ifdef HAVE_TRACING
1185   //the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
1186   if(status!=MPI_STATUS_IGNORE){
1187     src_traced = smpi_group_index(smpi_comm_group(comm), status->MPI_SOURCE);
1188     TRACE_smpi_recv(rank, src_traced, rank);
1189   }
1190   TRACE_smpi_ptp_out(rank, src_traced, rank, __FUNCTION__);
1191 #endif
1192   }
1193
1194   smpi_bench_begin();
1195   return retval;
1196 }
1197
1198 int PMPI_Send(void *buf, int count, MPI_Datatype datatype, int dst, int tag,
1199              MPI_Comm comm)
1200 {
1201   int retval = 0;
1202
1203   smpi_bench_end();
1204
1205   if (comm == MPI_COMM_NULL) {
1206     retval = MPI_ERR_COMM;
1207   } else if (dst == MPI_PROC_NULL) {
1208     retval = MPI_SUCCESS;
1209   } else if (dst >= smpi_group_size(smpi_comm_group(comm)) || dst <0){
1210     retval = MPI_ERR_RANK;
1211   } else if (count < 0) {
1212     retval = MPI_ERR_COUNT;
1213   } else if (buf==NULL && count > 0) {
1214     retval = MPI_ERR_COUNT;
1215   } else if (!is_datatype_valid(datatype)) {
1216       retval = MPI_ERR_TYPE;
1217   } else if(tag<0 && tag !=  MPI_ANY_TAG){
1218     retval = MPI_ERR_TAG;
1219   } else {
1220
1221 #ifdef HAVE_TRACING
1222   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1223   int dst_traced = smpi_group_index(smpi_comm_group(comm), dst);
1224   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1225   extra->type = TRACING_SEND;
1226   extra->send_size = count;
1227   extra->src = rank;
1228   extra->dst = dst_traced;
1229   extra->datatype1 = encode_datatype(datatype);
1230   TRACE_smpi_ptp_in(rank, rank, dst_traced, __FUNCTION__, extra);
1231   TRACE_smpi_send(rank, rank, dst_traced,count*smpi_datatype_size(datatype));
1232 #endif
1233
1234     smpi_mpi_send(buf, count, datatype, dst, tag, comm);
1235     retval = MPI_SUCCESS;
1236
1237 #ifdef HAVE_TRACING
1238   TRACE_smpi_ptp_out(rank, rank, dst_traced, __FUNCTION__);
1239 #endif
1240   }
1241
1242   smpi_bench_begin();
1243   return retval;
1244 }
1245
1246
1247
1248 int PMPI_Ssend(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm) {
1249   int retval = 0;
1250
1251    smpi_bench_end();
1252
1253    if (comm == MPI_COMM_NULL) {
1254      retval = MPI_ERR_COMM;
1255    } else if (dst == MPI_PROC_NULL) {
1256      retval = MPI_SUCCESS;
1257    } else if (dst >= smpi_group_size(smpi_comm_group(comm)) || dst <0){
1258      retval = MPI_ERR_RANK;
1259    } else if (count < 0) {
1260      retval = MPI_ERR_COUNT;
1261    } else if (buf==NULL && count > 0) {
1262      retval = MPI_ERR_COUNT;
1263    } else if (!is_datatype_valid(datatype)){
1264      retval = MPI_ERR_TYPE;
1265    } else if(tag<0 && tag !=  MPI_ANY_TAG){
1266      retval = MPI_ERR_TAG;
1267    } else {
1268
1269  #ifdef HAVE_TRACING
1270    int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1271    int dst_traced = smpi_group_index(smpi_comm_group(comm), dst);
1272    instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1273    extra->type = TRACING_SSEND;
1274    extra->send_size = count;
1275    extra->src = rank;
1276    extra->dst = dst_traced;
1277    extra->datatype1 = encode_datatype(datatype);
1278    TRACE_smpi_ptp_in(rank, rank, dst_traced, __FUNCTION__, extra);   TRACE_smpi_send(rank, rank, dst_traced,count*smpi_datatype_size(datatype));
1279  #endif
1280
1281      smpi_mpi_ssend(buf, count, datatype, dst, tag, comm);
1282      retval = MPI_SUCCESS;
1283
1284  #ifdef HAVE_TRACING
1285    TRACE_smpi_ptp_out(rank, rank, dst_traced, __FUNCTION__);
1286  #endif
1287    }
1288
1289    smpi_bench_begin();
1290    return retval;}
1291
1292
1293 int PMPI_Sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1294                  int dst, int sendtag, void *recvbuf, int recvcount,
1295                  MPI_Datatype recvtype, int src, int recvtag,
1296                  MPI_Comm comm, MPI_Status * status)
1297 {
1298   int retval = 0;
1299
1300   smpi_bench_end();
1301
1302   if (comm == MPI_COMM_NULL) {
1303     retval = MPI_ERR_COMM;
1304   } else if (!is_datatype_valid(sendtype)
1305              || !is_datatype_valid(recvtype)) {
1306     retval = MPI_ERR_TYPE;
1307   } else if (src == MPI_PROC_NULL || dst == MPI_PROC_NULL) {
1308       smpi_empty_status(status);
1309       status->MPI_SOURCE = MPI_PROC_NULL;
1310       retval = MPI_SUCCESS;
1311   }else if (dst >= smpi_group_size(smpi_comm_group(comm)) || dst <0 ||
1312       (src!=MPI_ANY_SOURCE && (src >= smpi_group_size(smpi_comm_group(comm)) || src <0))){
1313     retval = MPI_ERR_RANK;
1314   } else if (sendcount < 0 || recvcount<0) {
1315       retval = MPI_ERR_COUNT;
1316   } else if ((sendbuf==NULL && sendcount > 0)||(recvbuf==NULL && recvcount>0)) {
1317     retval = MPI_ERR_COUNT;
1318   } else if((sendtag<0 && sendtag !=  MPI_ANY_TAG)||(recvtag<0 && recvtag != MPI_ANY_TAG)){
1319     retval = MPI_ERR_TAG;
1320   } else {
1321
1322 #ifdef HAVE_TRACING
1323   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1324   int dst_traced = smpi_group_index(smpi_comm_group(comm), dst);
1325   int src_traced = smpi_group_index(smpi_comm_group(comm), src);
1326   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1327   extra->type = TRACING_SENDRECV;
1328   extra->send_size = sendcount;
1329   extra->recv_size = recvcount;
1330   extra->src = src_traced;
1331   extra->dst = dst_traced;
1332   extra->datatype1 = encode_datatype(sendtype);
1333   extra->datatype2 = encode_datatype(recvtype);
1334
1335   TRACE_smpi_ptp_in(rank, src_traced, dst_traced, __FUNCTION__, extra);
1336   TRACE_smpi_send(rank, rank, dst_traced,sendcount*smpi_datatype_size(sendtype));
1337 #endif
1338
1339
1340     smpi_mpi_sendrecv(sendbuf, sendcount, sendtype, dst, sendtag, recvbuf,
1341                       recvcount, recvtype, src, recvtag, comm, status);
1342     retval = MPI_SUCCESS;
1343
1344 #ifdef HAVE_TRACING
1345   TRACE_smpi_ptp_out(rank, src_traced, dst_traced, __FUNCTION__);
1346   TRACE_smpi_recv(rank, src_traced, rank);
1347 #endif
1348
1349   }
1350
1351   smpi_bench_begin();
1352   return retval;
1353 }
1354
1355 int PMPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype,
1356                          int dst, int sendtag, int src, int recvtag,
1357                          MPI_Comm comm, MPI_Status * status)
1358 {
1359   //TODO: suboptimal implementation
1360   void *recvbuf;
1361   int retval = 0;
1362   if (!is_datatype_valid(datatype)) {
1363       retval = MPI_ERR_TYPE;
1364   } else if (count < 0) {
1365       retval = MPI_ERR_COUNT;
1366   } else {
1367     int size = smpi_datatype_get_extent(datatype) * count;
1368     recvbuf = xbt_new0(char, size);
1369     retval =
1370         MPI_Sendrecv(buf, count, datatype, dst, sendtag, recvbuf, count,
1371                      datatype, src, recvtag, comm, status);
1372     if(retval==MPI_SUCCESS){
1373         smpi_datatype_copy(recvbuf, count, datatype, buf, count, datatype);
1374     }
1375     xbt_free(recvbuf);
1376
1377   }
1378   return retval;
1379 }
1380
1381 int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status)
1382 {
1383   int retval = 0;
1384   smpi_bench_end();
1385   if (request == NULL || flag == NULL) {
1386     retval = MPI_ERR_ARG;
1387   } else if (*request == MPI_REQUEST_NULL) {
1388     *flag= TRUE;
1389     smpi_empty_status(status);
1390     retval = MPI_ERR_REQUEST;
1391   } else {
1392 #ifdef HAVE_TRACING
1393     int rank = request && (*request)->comm != MPI_COMM_NULL
1394       ? smpi_process_index()
1395       : -1;
1396
1397     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1398     extra->type = TRACING_TEST;
1399     TRACE_smpi_testing_in(rank, extra);
1400 #endif
1401     *flag = smpi_mpi_test(request, status);
1402 #ifdef HAVE_TRACING
1403     TRACE_smpi_testing_out(rank);
1404 #endif
1405     retval = MPI_SUCCESS;
1406   }
1407   smpi_bench_begin();
1408   return retval;
1409 }
1410
1411 int PMPI_Testany(int count, MPI_Request requests[], int *index, int *flag,
1412                 MPI_Status * status)
1413 {
1414   int retval = 0;
1415
1416   smpi_bench_end();
1417   if (index == NULL || flag == NULL) {
1418     retval = MPI_ERR_ARG;
1419   } else {
1420     *flag = smpi_mpi_testany(count, requests, index, status);
1421     retval = MPI_SUCCESS;
1422   }
1423   smpi_bench_begin();
1424   return retval;
1425 }
1426
1427 int PMPI_Testall(int count, MPI_Request* requests, int* flag, MPI_Status* statuses)
1428 {
1429   int retval = 0;
1430
1431   smpi_bench_end();
1432   if (flag == NULL) {
1433     retval = MPI_ERR_ARG;
1434   } else {
1435     *flag = smpi_mpi_testall(count, requests, statuses);
1436     retval = MPI_SUCCESS;
1437   }
1438   smpi_bench_begin();
1439   return retval;
1440 }
1441
1442 int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) {
1443   int retval = 0;
1444   smpi_bench_end();
1445
1446   if (status == NULL) {
1447     retval = MPI_ERR_ARG;
1448   } else if (comm == MPI_COMM_NULL) {
1449     retval = MPI_ERR_COMM;
1450   } else if (source == MPI_PROC_NULL) {
1451     smpi_empty_status(status);
1452     status->MPI_SOURCE = MPI_PROC_NULL;
1453     retval = MPI_SUCCESS;
1454   } else {
1455     smpi_mpi_probe(source, tag, comm, status);
1456     retval = MPI_SUCCESS;
1457   }
1458   smpi_bench_begin();
1459   return retval;
1460 }
1461
1462
1463 int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) {
1464   int retval = 0;
1465   smpi_bench_end();
1466
1467   if (flag == NULL) {
1468     retval = MPI_ERR_ARG;
1469   } else if (status == NULL) {
1470     retval = MPI_ERR_ARG;
1471   } else if (comm == MPI_COMM_NULL) {
1472     retval = MPI_ERR_COMM;
1473   } else if (source == MPI_PROC_NULL) {
1474     *flag=TRUE;
1475     smpi_empty_status(status);
1476     status->MPI_SOURCE = MPI_PROC_NULL;
1477     retval = MPI_SUCCESS;
1478   } else {
1479     smpi_mpi_iprobe(source, tag, comm, flag, status);
1480     retval = MPI_SUCCESS;
1481   }
1482   smpi_bench_begin();
1483   return retval;
1484 }
1485
1486 int PMPI_Wait(MPI_Request * request, MPI_Status * status)
1487 {
1488   int retval = 0;
1489
1490   smpi_bench_end();
1491
1492   smpi_empty_status(status);
1493
1494   if (request == NULL) {
1495     retval = MPI_ERR_ARG;
1496   } else if (*request == MPI_REQUEST_NULL) {
1497     retval = MPI_ERR_REQUEST;
1498   } else {
1499
1500 #ifdef HAVE_TRACING
1501     int rank = request && (*request)->comm != MPI_COMM_NULL
1502       ? smpi_process_index()
1503       : -1;
1504
1505     int src_traced = (*request)->src;
1506     int dst_traced = (*request)->dst;
1507     MPI_Comm comm = (*request)->comm;
1508     int is_wait_for_receive = (*request)->recv;
1509     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1510     extra->type = TRACING_WAIT;
1511     TRACE_smpi_ptp_in(rank, src_traced, dst_traced, __FUNCTION__, extra);
1512 #endif
1513
1514     smpi_mpi_wait(request, status);
1515     retval = MPI_SUCCESS;
1516
1517 #ifdef HAVE_TRACING
1518     //the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
1519     TRACE_smpi_ptp_out(rank, src_traced, dst_traced, __FUNCTION__);
1520     if (is_wait_for_receive) {
1521       if(src_traced==MPI_ANY_SOURCE)
1522         src_traced = (status!=MPI_STATUS_IGNORE) ?
1523           smpi_group_rank(smpi_comm_group(comm), status->MPI_SOURCE) :
1524           src_traced;
1525       TRACE_smpi_recv(rank, src_traced, dst_traced);
1526     }
1527 #endif
1528
1529   }
1530
1531   smpi_bench_begin();
1532   return retval;
1533 }
1534
1535 int PMPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * status)
1536 {
1537   if (index == NULL)
1538     return MPI_ERR_ARG;
1539
1540   smpi_bench_end();
1541 #ifdef HAVE_TRACING
1542   //save requests information for tracing
1543   int i;
1544   int *srcs = xbt_new0(int, count);
1545   int *dsts = xbt_new0(int, count);
1546   int *recvs = xbt_new0(int, count);
1547   MPI_Comm *comms = xbt_new0(MPI_Comm, count);
1548
1549   for (i = 0; i < count; i++) {
1550     MPI_Request req = requests[i];      //already received requests are no longer valid
1551     if (req) {
1552       srcs[i] = req->src;
1553       dsts[i] = req->dst;
1554       recvs[i] = req->recv;
1555       comms[i] = req->comm;
1556     }
1557   }
1558   int rank_traced = smpi_process_index();
1559   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1560   extra->type = TRACING_WAITANY;
1561   extra->send_size=count;
1562   TRACE_smpi_ptp_in(rank_traced, -1, -1, __FUNCTION__,extra);
1563
1564 #endif
1565   *index = smpi_mpi_waitany(count, requests, status);
1566 #ifdef HAVE_TRACING
1567   if(*index!=MPI_UNDEFINED){
1568     int src_traced = srcs[*index];
1569     //the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
1570     int dst_traced = dsts[*index];
1571     int is_wait_for_receive = recvs[*index];
1572     if (is_wait_for_receive) {
1573       if(srcs[*index]==MPI_ANY_SOURCE)
1574         src_traced = (status!=MPI_STATUSES_IGNORE) ?
1575                       smpi_group_rank(smpi_comm_group(comms[*index]), status->MPI_SOURCE) :
1576                       srcs[*index];
1577       TRACE_smpi_recv(rank_traced, src_traced, dst_traced);
1578     }
1579     TRACE_smpi_ptp_out(rank_traced, src_traced, dst_traced, __FUNCTION__);
1580     xbt_free(srcs);
1581     xbt_free(dsts);
1582     xbt_free(recvs);
1583     xbt_free(comms);
1584
1585   }
1586 #endif
1587   smpi_bench_begin();
1588   return MPI_SUCCESS;
1589 }
1590
1591 int PMPI_Waitall(int count, MPI_Request requests[], MPI_Status status[])
1592 {
1593
1594   smpi_bench_end();
1595 #ifdef HAVE_TRACING
1596   //save information from requests
1597   int i;
1598   int *srcs = xbt_new0(int, count);
1599   int *dsts = xbt_new0(int, count);
1600   int *recvs = xbt_new0(int, count);
1601   int *valid = xbt_new0(int, count);
1602   MPI_Comm *comms = xbt_new0(MPI_Comm, count);
1603
1604   //int valid_count = 0;
1605   for (i = 0; i < count; i++) {
1606     MPI_Request req = requests[i];
1607     if(req!=MPI_REQUEST_NULL){
1608       srcs[i] = req->src;
1609       dsts[i] = req->dst;
1610       recvs[i] = req->recv;
1611       comms[i] = req->comm;
1612       valid[i]=1;;
1613     }else{
1614       valid[i]=0;
1615     }
1616   }
1617   int rank_traced = smpi_process_index();
1618   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1619   extra->type = TRACING_WAITALL;
1620   extra->send_size=count;
1621   TRACE_smpi_ptp_in(rank_traced, -1, -1, __FUNCTION__,extra);
1622 #endif
1623   int retval = smpi_mpi_waitall(count, requests, status);
1624 #ifdef HAVE_TRACING
1625   for (i = 0; i < count; i++) {
1626     if(valid[i]){
1627     //int src_traced = srcs[*index];
1628     //the src may not have been known at the beginning of the recv (MPI_ANY_SOURCE)
1629       int src_traced = srcs[i];
1630       int dst_traced = dsts[i];
1631       int is_wait_for_receive = recvs[i];
1632       if (is_wait_for_receive) {
1633         if(src_traced==MPI_ANY_SOURCE)
1634         src_traced = (status!=MPI_STATUSES_IGNORE) ?
1635                           smpi_group_rank(smpi_comm_group(comms[i]), status[i].MPI_SOURCE) :
1636                           srcs[i];
1637         TRACE_smpi_recv(rank_traced, src_traced, dst_traced);
1638       }
1639     }
1640   }
1641   TRACE_smpi_ptp_out(rank_traced, -1, -1, __FUNCTION__);
1642   xbt_free(srcs);
1643   xbt_free(dsts);
1644   xbt_free(recvs);
1645   xbt_free(valid);
1646   xbt_free(comms);
1647
1648 #endif
1649   smpi_bench_begin();
1650   return retval;
1651 }
1652
1653 int PMPI_Waitsome(int incount, MPI_Request requests[], int *outcount,
1654                  int *indices, MPI_Status status[])
1655 {
1656   int retval = 0;
1657
1658   smpi_bench_end();
1659   if (outcount == NULL) {
1660     retval = MPI_ERR_ARG;
1661   } else {
1662     *outcount = smpi_mpi_waitsome(incount, requests, indices, status);
1663     retval = MPI_SUCCESS;
1664   }
1665   smpi_bench_begin();
1666   return retval;
1667 }
1668
1669 int PMPI_Testsome(int incount, MPI_Request requests[], int* outcount,
1670                  int* indices, MPI_Status status[])
1671 {
1672   int retval = 0;
1673
1674    smpi_bench_end();
1675    if (outcount == NULL) {
1676      retval = MPI_ERR_ARG;
1677    } else {
1678      *outcount = smpi_mpi_testsome(incount, requests, indices, status);
1679      retval = MPI_SUCCESS;
1680    }
1681    smpi_bench_begin();
1682    return retval;
1683 }
1684
1685
1686 int PMPI_Bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
1687 {
1688   int retval = 0;
1689
1690   smpi_bench_end();
1691
1692   if (comm == MPI_COMM_NULL) {
1693     retval = MPI_ERR_COMM;
1694   } else {
1695 #ifdef HAVE_TRACING
1696   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1697   int root_traced = smpi_group_index(smpi_comm_group(comm), root);
1698
1699   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1700   extra->type = TRACING_BCAST;
1701   extra->send_size = count;
1702   extra->root = root_traced;
1703   extra->datatype1 = encode_datatype(datatype);
1704   TRACE_smpi_collective_in(rank, root_traced, __FUNCTION__, extra);
1705
1706 #endif
1707     mpi_coll_bcast_fun(buf, count, datatype, root, comm);
1708     retval = MPI_SUCCESS;
1709 #ifdef HAVE_TRACING
1710   TRACE_smpi_collective_out(rank, root_traced, __FUNCTION__);
1711 #endif
1712   }
1713
1714   smpi_bench_begin();
1715   return retval;
1716 }
1717
1718 int PMPI_Barrier(MPI_Comm comm)
1719 {
1720   int retval = 0;
1721
1722   smpi_bench_end();
1723
1724   if (comm == MPI_COMM_NULL) {
1725     retval = MPI_ERR_COMM;
1726   } else {
1727 #ifdef HAVE_TRACING
1728   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1729   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1730   extra->type = TRACING_BARRIER;
1731   TRACE_smpi_collective_in(rank, -1, __FUNCTION__, extra);
1732 #endif
1733     mpi_coll_barrier_fun(comm);
1734     retval = MPI_SUCCESS;
1735 #ifdef HAVE_TRACING
1736   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
1737 #endif
1738   }
1739
1740   smpi_bench_begin();
1741   return retval;
1742 }
1743
1744 int PMPI_Gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1745                void *recvbuf, int recvcount, MPI_Datatype recvtype,
1746                int root, MPI_Comm comm)
1747 {
1748   int retval = 0;
1749
1750   smpi_bench_end();
1751
1752   if (comm == MPI_COMM_NULL) {
1753     retval = MPI_ERR_COMM;
1754   } else if ((( sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) ||
1755             ((smpi_comm_rank(comm) == root) && (recvtype == MPI_DATATYPE_NULL))){
1756     retval = MPI_ERR_TYPE;
1757   } else if ((( sendbuf != MPI_IN_PLACE) && (sendcount <0)) ||
1758             ((smpi_comm_rank(comm) == root) && (recvcount <0))){
1759     retval = MPI_ERR_COUNT;
1760   } else {
1761
1762     char* sendtmpbuf = (char*) sendbuf;
1763     int sendtmpcount = sendcount;
1764     MPI_Datatype sendtmptype = sendtype;
1765     if( (smpi_comm_rank(comm) == root) && (sendbuf == MPI_IN_PLACE )) {
1766       sendtmpcount=0;
1767       sendtmptype=recvtype;
1768     }
1769 #ifdef HAVE_TRACING
1770   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1771   int root_traced = smpi_group_index(smpi_comm_group(comm), root);
1772   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1773   extra->type = TRACING_GATHER;
1774   extra->send_size = sendtmpcount;
1775   extra->recv_size = recvcount;
1776   extra->root = root_traced;
1777   extra->datatype1 = encode_datatype(sendtmptype);
1778   extra->datatype2 = encode_datatype(recvtype);
1779
1780   TRACE_smpi_collective_in(rank, root_traced, __FUNCTION__, extra);
1781 #endif
1782     mpi_coll_gather_fun(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcount,
1783                     recvtype, root, comm);
1784
1785
1786     retval = MPI_SUCCESS;
1787 #ifdef HAVE_TRACING
1788   TRACE_smpi_collective_out(rank, root_traced, __FUNCTION__);
1789 #endif
1790   }
1791
1792   smpi_bench_begin();
1793   return retval;
1794 }
1795
1796 int PMPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1797                 void *recvbuf, int *recvcounts, int *displs,
1798                 MPI_Datatype recvtype, int root, MPI_Comm comm)
1799 {
1800   int retval = 0;
1801
1802   smpi_bench_end();
1803
1804   if (comm == MPI_COMM_NULL) {
1805     retval = MPI_ERR_COMM;
1806   } else if ((( sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) ||
1807             ((smpi_comm_rank(comm) == root) && (recvtype == MPI_DATATYPE_NULL))){
1808     retval = MPI_ERR_TYPE;
1809   } else if (( sendbuf != MPI_IN_PLACE) && (sendcount <0)){
1810     retval = MPI_ERR_COUNT;
1811   } else if (recvcounts == NULL || displs == NULL) {
1812     retval = MPI_ERR_ARG;
1813   } else {
1814     char* sendtmpbuf = (char*) sendbuf;
1815     int sendtmpcount = sendcount;
1816     MPI_Datatype sendtmptype = sendtype;
1817     if( (smpi_comm_rank(comm) == root) && (sendbuf == MPI_IN_PLACE )) {
1818       sendtmpcount=0;
1819       sendtmptype=recvtype;
1820     }
1821
1822 #ifdef HAVE_TRACING
1823   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1824   int root_traced = smpi_group_index(smpi_comm_group(comm), root);
1825   int i=0;
1826   int size = smpi_comm_size(comm);
1827   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1828   extra->type = TRACING_GATHERV;
1829   extra->send_size = sendtmpcount;
1830   extra->recvcounts= xbt_malloc(size*sizeof(int));
1831   for(i=0; i< size; i++)//copy data to avoid bad free
1832     extra->recvcounts[i] = recvcounts[i];
1833   extra->num_processes = size;
1834   extra->root = root_traced;
1835   extra->datatype1 = encode_datatype(sendtmptype);
1836   extra->datatype2 = encode_datatype(recvtype);
1837
1838   TRACE_smpi_collective_in(rank, root_traced, __FUNCTION__,extra);
1839 #endif
1840     smpi_mpi_gatherv(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcounts,
1841                      displs, recvtype, root, comm);
1842     retval = MPI_SUCCESS;
1843 #ifdef HAVE_TRACING
1844   TRACE_smpi_collective_out(rank, root_traced, __FUNCTION__);
1845 #endif
1846   }
1847
1848   smpi_bench_begin();
1849   return retval;
1850 }
1851
1852 int PMPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1853                   void *recvbuf, int recvcount, MPI_Datatype recvtype,
1854                   MPI_Comm comm)
1855 {
1856   int retval = 0;
1857
1858   smpi_bench_end();
1859
1860   if (comm == MPI_COMM_NULL) {
1861     retval = MPI_ERR_COMM;
1862   } else if ((( sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) ||
1863             (recvtype == MPI_DATATYPE_NULL)){
1864     retval = MPI_ERR_TYPE;
1865   } else if ((( sendbuf != MPI_IN_PLACE) && (sendcount <0)) ||
1866             (recvcount <0)){
1867     retval = MPI_ERR_COUNT;
1868   } else {
1869     if(sendbuf == MPI_IN_PLACE) {
1870       sendbuf=((char*)recvbuf)+smpi_datatype_get_extent(recvtype)*recvcount*smpi_comm_rank(comm);
1871       sendcount=recvcount;
1872       sendtype=recvtype;
1873     }
1874 #ifdef HAVE_TRACING
1875   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1876   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1877   extra->type = TRACING_ALLGATHER;
1878   extra->send_size = sendcount;
1879   extra->recv_size = recvcount;
1880   extra->datatype1 = encode_datatype(sendtype);
1881   extra->datatype2 = encode_datatype(recvtype);
1882
1883   TRACE_smpi_collective_in(rank, -1, __FUNCTION__, extra);
1884 #endif
1885     mpi_coll_allgather_fun(sendbuf, sendcount, sendtype, recvbuf, recvcount,
1886                            recvtype, comm);
1887     retval = MPI_SUCCESS;
1888
1889 #ifdef HAVE_TRACING
1890   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
1891 #endif
1892   }
1893   smpi_bench_begin();
1894   return retval;
1895 }
1896
1897 int PMPI_Allgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1898                    void *recvbuf, int *recvcounts, int *displs,
1899                    MPI_Datatype recvtype, MPI_Comm comm)
1900 {
1901   int retval = 0;
1902
1903   smpi_bench_end();
1904
1905   if (comm == MPI_COMM_NULL) {
1906     retval = MPI_ERR_COMM;
1907   } else if ((( sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) ||
1908             (recvtype == MPI_DATATYPE_NULL)){
1909     retval = MPI_ERR_TYPE;
1910   } else if (( sendbuf != MPI_IN_PLACE) && (sendcount <0)){
1911     retval = MPI_ERR_COUNT;
1912   } else if (recvcounts == NULL || displs == NULL) {
1913     retval = MPI_ERR_ARG;
1914   } else {
1915
1916     if(sendbuf == MPI_IN_PLACE) {
1917       sendbuf=((char*)recvbuf)+smpi_datatype_get_extent(recvtype)*displs[smpi_comm_rank(comm)];
1918       sendcount=recvcounts[smpi_comm_rank(comm)];
1919       sendtype=recvtype;
1920     }
1921 #ifdef HAVE_TRACING
1922   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1923   int i=0;
1924   int size = smpi_comm_size(comm);
1925   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1926   extra->type = TRACING_ALLGATHERV;
1927   extra->send_size = sendcount;
1928   extra->recvcounts= xbt_malloc(size*sizeof(int));
1929   for(i=0; i< size; i++)//copy data to avoid bad free
1930     extra->recvcounts[i] = recvcounts[i];
1931   extra->num_processes = size;
1932   extra->datatype1 = encode_datatype(sendtype);
1933   extra->datatype2 = encode_datatype(recvtype);
1934
1935   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
1936 #endif
1937     mpi_coll_allgatherv_fun(sendbuf, sendcount, sendtype, recvbuf, recvcounts,
1938                         displs, recvtype, comm);
1939     retval = MPI_SUCCESS;
1940 #ifdef HAVE_TRACING
1941   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
1942 #endif
1943   }
1944
1945   smpi_bench_begin();
1946   return retval;
1947 }
1948
1949 int PMPI_Scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
1950                 void *recvbuf, int recvcount, MPI_Datatype recvtype,
1951                 int root, MPI_Comm comm)
1952 {
1953   int retval = 0;
1954
1955   smpi_bench_end();
1956
1957   if (comm == MPI_COMM_NULL) {
1958     retval = MPI_ERR_COMM;
1959   } else if (((smpi_comm_rank(comm)==root) && (sendtype == MPI_DATATYPE_NULL))
1960              || ((recvbuf !=MPI_IN_PLACE) && (recvtype == MPI_DATATYPE_NULL))) {
1961     retval = MPI_ERR_TYPE;
1962   } else if ((sendbuf == recvbuf) ||
1963       ((smpi_comm_rank(comm)==root) && sendcount>0 && (sendbuf == NULL))){
1964     retval = MPI_ERR_BUFFER;
1965   }else {
1966
1967     if (recvbuf == MPI_IN_PLACE) {
1968         recvtype=sendtype;
1969         recvcount=sendcount;
1970     }
1971 #ifdef HAVE_TRACING
1972   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
1973   int root_traced = smpi_group_index(smpi_comm_group(comm), root);
1974   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
1975   extra->type = TRACING_SCATTER;
1976   extra->send_size = sendcount;
1977   extra->recv_size= recvcount;
1978   extra->root = root_traced;
1979   extra->datatype1 = encode_datatype(sendtype);
1980   extra->datatype2 = encode_datatype(recvtype);
1981
1982   TRACE_smpi_collective_in(rank, root_traced, __FUNCTION__,extra);
1983 #endif
1984     mpi_coll_scatter_fun(sendbuf, sendcount, sendtype, recvbuf, recvcount,
1985                      recvtype, root, comm);
1986     retval = MPI_SUCCESS;
1987 #ifdef HAVE_TRACING
1988   TRACE_smpi_collective_out(rank, root_traced, __FUNCTION__);
1989 #endif
1990   }
1991
1992   smpi_bench_begin();
1993   return retval;
1994 }
1995
1996 int PMPI_Scatterv(void *sendbuf, int *sendcounts, int *displs,
1997                  MPI_Datatype sendtype, void *recvbuf, int recvcount,
1998                  MPI_Datatype recvtype, int root, MPI_Comm comm)
1999 {
2000   int retval = 0;
2001
2002   smpi_bench_end();
2003
2004   if (comm == MPI_COMM_NULL) {
2005     retval = MPI_ERR_COMM;
2006   } else if (sendcounts == NULL || displs == NULL) {
2007     retval = MPI_ERR_ARG;
2008   } else if (((smpi_comm_rank(comm)==root) && (sendtype == MPI_DATATYPE_NULL))
2009              || ((recvbuf !=MPI_IN_PLACE) && (recvtype == MPI_DATATYPE_NULL))) {
2010     retval = MPI_ERR_TYPE;
2011   } else {
2012     if (recvbuf == MPI_IN_PLACE) {
2013         recvtype=sendtype;
2014         recvcount=sendcounts[smpi_comm_rank(comm)];
2015     }
2016 #ifdef HAVE_TRACING
2017   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2018   int root_traced = smpi_group_index(smpi_comm_group(comm), root);
2019   int i=0;
2020   int size = smpi_comm_size(comm);
2021   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2022   extra->type = TRACING_SCATTERV;
2023   extra->recv_size = recvcount;
2024   extra->sendcounts= xbt_malloc(size*sizeof(int));
2025   for(i=0; i< size; i++)//copy data to avoid bad free
2026     extra->sendcounts[i] = sendcounts[i];
2027   extra->num_processes = size;
2028   extra->root = root_traced;
2029   extra->datatype1 = encode_datatype(sendtype);
2030   extra->datatype2 = encode_datatype(recvtype);
2031
2032   TRACE_smpi_collective_in(rank, root_traced, __FUNCTION__,extra);
2033
2034 #endif
2035     smpi_mpi_scatterv(sendbuf, sendcounts, displs, sendtype, recvbuf,
2036                       recvcount, recvtype, root, comm);
2037     retval = MPI_SUCCESS;
2038 #ifdef HAVE_TRACING
2039   TRACE_smpi_collective_out(rank, root_traced, __FUNCTION__);
2040 #endif
2041   }
2042
2043   smpi_bench_begin();
2044   return retval;
2045 }
2046
2047 int PMPI_Reduce(void *sendbuf, void *recvbuf, int count,
2048                MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm)
2049 {
2050   int retval = 0;
2051
2052   smpi_bench_end();
2053
2054   if (comm == MPI_COMM_NULL) {
2055     retval = MPI_ERR_COMM;
2056   } else if (!is_datatype_valid(datatype) || op == MPI_OP_NULL) {
2057     retval = MPI_ERR_ARG;
2058   } else {
2059 #ifdef HAVE_TRACING
2060   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2061   int root_traced = smpi_group_index(smpi_comm_group(comm), root);
2062   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2063   extra->type = TRACING_REDUCE;
2064   extra->send_size = count;
2065   extra->datatype1 = encode_datatype(datatype);
2066   extra->root = root_traced;
2067
2068   TRACE_smpi_collective_in(rank, root_traced, __FUNCTION__,extra);
2069 #endif
2070     mpi_coll_reduce_fun(sendbuf, recvbuf, count, datatype, op, root, comm);
2071
2072     retval = MPI_SUCCESS;
2073 #ifdef HAVE_TRACING
2074   TRACE_smpi_collective_out(rank, root_traced, __FUNCTION__);
2075 #endif
2076   }
2077
2078   smpi_bench_begin();
2079   return retval;
2080 }
2081
2082 int PMPI_Reduce_local(void *inbuf, void *inoutbuf, int count,
2083     MPI_Datatype datatype, MPI_Op op){
2084   int retval = 0;
2085
2086     smpi_bench_end();
2087     if (!is_datatype_valid(datatype) || op == MPI_OP_NULL) {
2088       retval = MPI_ERR_ARG;
2089     } else {
2090       smpi_op_apply(op, inbuf, inoutbuf, &count, &datatype);
2091       retval=MPI_SUCCESS;
2092     }
2093     smpi_bench_begin();
2094     return retval;
2095 }
2096
2097 int PMPI_Allreduce(void *sendbuf, void *recvbuf, int count,
2098                   MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
2099 {
2100   int retval = 0;
2101
2102   smpi_bench_end();
2103
2104   if (comm == MPI_COMM_NULL) {
2105     retval = MPI_ERR_COMM;
2106   } else if (!is_datatype_valid(datatype)) {
2107     retval = MPI_ERR_TYPE;
2108   } else if (op == MPI_OP_NULL) {
2109     retval = MPI_ERR_OP;
2110   } else {
2111
2112     char* sendtmpbuf = (char*) sendbuf;
2113     if( sendbuf == MPI_IN_PLACE ) {
2114       sendtmpbuf = (char *)xbt_malloc(count*smpi_datatype_get_extent(datatype));
2115       smpi_datatype_copy(recvbuf, count, datatype,sendtmpbuf, count, datatype);
2116     }
2117 #ifdef HAVE_TRACING
2118   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2119   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2120   extra->type = TRACING_ALLREDUCE;
2121   extra->send_size = count;
2122   extra->datatype1 = encode_datatype(datatype);
2123
2124   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2125 #endif
2126     mpi_coll_allreduce_fun(sendtmpbuf, recvbuf, count, datatype, op, comm);
2127
2128     if( sendbuf == MPI_IN_PLACE ) {
2129       xbt_free(sendtmpbuf);
2130     }
2131
2132     retval = MPI_SUCCESS;
2133 #ifdef HAVE_TRACING
2134   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2135 #endif
2136   }
2137
2138   smpi_bench_begin();
2139   return retval;
2140 }
2141
2142 int PMPI_Scan(void *sendbuf, void *recvbuf, int count,
2143              MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
2144 {
2145   int retval = 0;
2146
2147   smpi_bench_end();
2148
2149   if (comm == MPI_COMM_NULL) {
2150     retval = MPI_ERR_COMM;
2151   } else if (!is_datatype_valid(datatype)) {
2152     retval = MPI_ERR_TYPE;
2153   } else if (op == MPI_OP_NULL) {
2154     retval = MPI_ERR_OP;
2155   } else {
2156 #ifdef HAVE_TRACING
2157   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2158   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2159   extra->type = TRACING_SCAN;
2160   extra->send_size = count;
2161   extra->datatype1 = encode_datatype(datatype);
2162
2163   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2164 #endif
2165     smpi_mpi_scan(sendbuf, recvbuf, count, datatype, op, comm);
2166     retval = MPI_SUCCESS;
2167 #ifdef HAVE_TRACING
2168   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2169 #endif
2170   }
2171
2172   smpi_bench_begin();
2173   return retval;
2174 }
2175
2176 int PMPI_Exscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
2177                 MPI_Op op, MPI_Comm comm){
2178   int retval = 0;
2179
2180   smpi_bench_end();
2181
2182   if (comm == MPI_COMM_NULL) {
2183     retval = MPI_ERR_COMM;
2184   } else if (!is_datatype_valid(datatype)) {
2185     retval = MPI_ERR_TYPE;
2186   } else if (op == MPI_OP_NULL) {
2187     retval = MPI_ERR_OP;
2188   } else {
2189 #ifdef HAVE_TRACING
2190   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2191   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2192   extra->type = TRACING_EXSCAN;
2193   extra->send_size = count;
2194   extra->datatype1 = encode_datatype(datatype);
2195
2196   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2197 #endif
2198     smpi_mpi_exscan(sendbuf, recvbuf, count, datatype, op, comm);
2199     retval = MPI_SUCCESS;
2200 #ifdef HAVE_TRACING
2201   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2202 #endif
2203   }
2204
2205   smpi_bench_begin();
2206   return retval;
2207 }
2208
2209 int PMPI_Reduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts,
2210                        MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
2211 {
2212   int retval = 0;
2213   smpi_bench_end();
2214
2215   if (comm == MPI_COMM_NULL) {
2216     retval = MPI_ERR_COMM;
2217   } else if (!is_datatype_valid(datatype)) {
2218     retval = MPI_ERR_TYPE;
2219   } else if (op == MPI_OP_NULL) {
2220     retval = MPI_ERR_OP;
2221   } else if (recvcounts == NULL) {
2222     retval = MPI_ERR_ARG;
2223   } else {
2224 #ifdef HAVE_TRACING
2225   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2226   int i=0;
2227   int size = smpi_comm_size(comm);
2228   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2229   extra->type = TRACING_REDUCE_SCATTER;
2230   extra->send_size = 0;
2231   extra->recvcounts= xbt_malloc(size*sizeof(int));
2232   for(i=0; i< size; i++)//copy data to avoid bad free
2233     extra->recvcounts[i] = recvcounts[i];
2234   extra->num_processes = size;
2235   extra->datatype1 = encode_datatype(datatype);
2236
2237   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2238 #endif
2239     void* sendtmpbuf=sendbuf;
2240     if(sendbuf==MPI_IN_PLACE){
2241       sendtmpbuf=recvbuf;
2242     }
2243
2244     mpi_coll_reduce_scatter_fun(sendtmpbuf, recvbuf, recvcounts,
2245                        datatype,  op, comm);
2246     retval = MPI_SUCCESS;
2247 #ifdef HAVE_TRACING
2248   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2249 #endif
2250   }
2251
2252   smpi_bench_begin();
2253   return retval;
2254 }
2255
2256 int PMPI_Reduce_scatter_block(void *sendbuf, void *recvbuf, int recvcount,
2257                        MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
2258 {
2259   int retval,i;
2260   smpi_bench_end();
2261
2262   if (comm == MPI_COMM_NULL) {
2263     retval = MPI_ERR_COMM;
2264   } else if (!is_datatype_valid(datatype)) {
2265     retval = MPI_ERR_TYPE;
2266   } else if (op == MPI_OP_NULL) {
2267     retval = MPI_ERR_OP;
2268   } else if (recvcount < 0) {
2269     retval = MPI_ERR_ARG;
2270   } else {
2271     int count=smpi_comm_size(comm);
2272
2273 #ifdef HAVE_TRACING
2274   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2275   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2276   extra->type = TRACING_REDUCE_SCATTER;
2277   extra->send_size = 0;
2278   extra->recvcounts= xbt_malloc(count*sizeof(int));
2279   for(i=0; i< count; i++)//copy data to avoid bad free
2280     extra->recvcounts[i] = recvcount;
2281   extra->num_processes = count;
2282   extra->datatype1 = encode_datatype(datatype);
2283
2284   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2285 #endif
2286     int* recvcounts=(int*)xbt_malloc(count);
2287     for (i=0; i<count;i++)recvcounts[i]=recvcount;
2288     mpi_coll_reduce_scatter_fun(sendbuf, recvbuf, recvcounts,
2289                        datatype,  op, comm);
2290     xbt_free(recvcounts);
2291     retval = MPI_SUCCESS;
2292 #ifdef HAVE_TRACING
2293   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2294 #endif
2295   }
2296
2297   smpi_bench_begin();
2298   return retval;
2299 }
2300
2301 int PMPI_Alltoall(void *sendbuf, int sendcount, MPI_Datatype sendtype,
2302                  void *recvbuf, int recvcount, MPI_Datatype recvtype,
2303                  MPI_Comm comm)
2304 {
2305   int retval = 0;
2306
2307   smpi_bench_end();
2308
2309   if (comm == MPI_COMM_NULL) {
2310     retval = MPI_ERR_COMM;
2311   } else if (sendtype == MPI_DATATYPE_NULL
2312              || recvtype == MPI_DATATYPE_NULL) {
2313     retval = MPI_ERR_TYPE;
2314   } else {
2315 #ifdef HAVE_TRACING
2316   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2317   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2318   extra->type = TRACING_ALLTOALL;
2319   extra->send_size = sendcount;
2320   extra->recv_size = recvcount;
2321   extra->datatype1 = encode_datatype(sendtype);
2322   extra->datatype2 = encode_datatype(recvtype);
2323
2324   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2325 #endif
2326     retval = mpi_coll_alltoall_fun(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm);
2327 #ifdef HAVE_TRACING
2328   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2329 #endif
2330   }
2331
2332   smpi_bench_begin();
2333   return retval;
2334 }
2335
2336 int PMPI_Alltoallv(void *sendbuf, int *sendcounts, int *senddisps,
2337                   MPI_Datatype sendtype, void *recvbuf, int *recvcounts,
2338                   int *recvdisps, MPI_Datatype recvtype, MPI_Comm comm)
2339 {
2340   int retval = 0;
2341
2342   smpi_bench_end();
2343
2344   if (comm == MPI_COMM_NULL) {
2345     retval = MPI_ERR_COMM;
2346   } else if (sendtype == MPI_DATATYPE_NULL
2347              || recvtype == MPI_DATATYPE_NULL) {
2348     retval = MPI_ERR_TYPE;
2349   } else if (sendcounts == NULL || senddisps == NULL || recvcounts == NULL
2350              || recvdisps == NULL) {
2351     retval = MPI_ERR_ARG;
2352   } else {
2353 #ifdef HAVE_TRACING
2354   int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1;
2355   int i=0;
2356   int size = smpi_comm_size(comm);
2357   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
2358   extra->type = TRACING_ALLTOALLV;
2359   extra->send_size = 0;
2360   extra->recv_size = 0;
2361   extra->recvcounts= xbt_malloc(size*sizeof(int));
2362   extra->sendcounts= xbt_malloc(size*sizeof(int));
2363
2364   for(i=0; i< size; i++){//copy data to avoid bad free
2365     extra->send_size += sendcounts[i];
2366     extra->recv_size += recvcounts[i];
2367
2368     extra->sendcounts[i] = sendcounts[i];
2369     extra->recvcounts[i] = recvcounts[i];
2370   }
2371   extra->num_processes = size;
2372
2373   extra->datatype1 = encode_datatype(sendtype);
2374   extra->datatype2 = encode_datatype(recvtype);
2375
2376   TRACE_smpi_collective_in(rank, -1, __FUNCTION__,extra);
2377 #endif
2378     retval =
2379         mpi_coll_alltoallv_fun(sendbuf, sendcounts, senddisps, sendtype,
2380                                   recvbuf, recvcounts, recvdisps, recvtype,
2381                                   comm);
2382 #ifdef HAVE_TRACING
2383   TRACE_smpi_collective_out(rank, -1, __FUNCTION__);
2384 #endif
2385   }
2386
2387   smpi_bench_begin();
2388   return retval;
2389 }
2390
2391
2392 int PMPI_Get_processor_name(char *name, int *resultlen)
2393 {
2394   int retval = MPI_SUCCESS;
2395
2396   strncpy(name, SIMIX_host_get_name(SIMIX_host_self()),
2397           strlen(SIMIX_host_get_name(SIMIX_host_self())) < MPI_MAX_PROCESSOR_NAME - 1 ?
2398           strlen(SIMIX_host_get_name(SIMIX_host_self())) +1 :
2399           MPI_MAX_PROCESSOR_NAME - 1 );
2400   *resultlen =
2401       strlen(name) >
2402       MPI_MAX_PROCESSOR_NAME ? MPI_MAX_PROCESSOR_NAME : strlen(name);
2403
2404   return retval;
2405 }
2406
2407 int PMPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count)
2408 {
2409   int retval = MPI_SUCCESS;
2410   size_t size;
2411
2412   if (status == NULL || count == NULL) {
2413     retval = MPI_ERR_ARG;
2414   } else if (!is_datatype_valid(datatype)) {
2415     retval = MPI_ERR_TYPE;
2416   } else {
2417     size = smpi_datatype_size(datatype);
2418     if (size == 0) {
2419       *count = 0;
2420     } else if (status->count % size != 0) {
2421       retval = MPI_UNDEFINED;
2422     } else {
2423       *count = smpi_mpi_get_count(status, datatype);
2424     }
2425   }
2426   return retval;
2427 }
2428
2429 int PMPI_Type_contiguous(int count, MPI_Datatype old_type, MPI_Datatype* new_type) {
2430   int retval = 0;
2431
2432   if (old_type == MPI_DATATYPE_NULL) {
2433     retval = MPI_ERR_TYPE;
2434   } else if (count<0){
2435     retval = MPI_ERR_COUNT;
2436   } else {
2437     retval = smpi_datatype_contiguous(count, old_type, new_type, 0);
2438   }
2439   return retval;
2440 }
2441
2442 int PMPI_Type_commit(MPI_Datatype* datatype) {
2443   int retval = 0;
2444
2445   if (datatype == NULL || *datatype == MPI_DATATYPE_NULL) {
2446     retval = MPI_ERR_TYPE;
2447   } else {
2448     smpi_datatype_commit(datatype);
2449     retval = MPI_SUCCESS;
2450   }
2451   return retval;
2452 }
2453
2454
2455 int PMPI_Type_vector(int count, int blocklen, int stride, MPI_Datatype old_type, MPI_Datatype* new_type) {
2456   int retval = 0;
2457
2458   if (old_type == MPI_DATATYPE_NULL) {
2459     retval = MPI_ERR_TYPE;
2460   } else if (count<0 || blocklen<0){
2461     retval = MPI_ERR_COUNT;
2462   } else {
2463     retval = smpi_datatype_vector(count, blocklen, stride, old_type, new_type);
2464   }
2465   return retval;
2466 }
2467
2468 int PMPI_Type_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type) {
2469   int retval = 0;
2470
2471   if (old_type == MPI_DATATYPE_NULL) {
2472     retval = MPI_ERR_TYPE;
2473   } else if (count<0 || blocklen<0){
2474     retval = MPI_ERR_COUNT;
2475   } else {
2476     retval = smpi_datatype_hvector(count, blocklen, stride, old_type, new_type);
2477   }
2478   return retval;
2479 }
2480
2481 int PMPI_Type_create_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type) {
2482   return MPI_Type_hvector(count, blocklen, stride, old_type, new_type);
2483 }
2484
2485 int PMPI_Type_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) {
2486   int retval = 0;
2487
2488   if (old_type == MPI_DATATYPE_NULL) {
2489     retval = MPI_ERR_TYPE;
2490   } else if (count<0){
2491     retval = MPI_ERR_COUNT;
2492   } else {
2493     retval = smpi_datatype_indexed(count, blocklens, indices, old_type, new_type);
2494   }
2495   return retval;
2496 }
2497
2498 int PMPI_Type_create_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) {
2499   int retval = 0;
2500
2501   if (old_type == MPI_DATATYPE_NULL) {
2502     retval = MPI_ERR_TYPE;
2503   } else if (count<0){
2504     retval = MPI_ERR_COUNT;
2505   } else {
2506     retval = smpi_datatype_indexed(count, blocklens, indices, old_type, new_type);
2507   }
2508   return retval;
2509 }
2510
2511 int PMPI_Type_create_indexed_block(int count, int blocklength, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) {
2512   int retval,i;
2513
2514   if (old_type == MPI_DATATYPE_NULL) {
2515     retval = MPI_ERR_TYPE;
2516   } else if (count<0){
2517     retval = MPI_ERR_COUNT;
2518   } else {
2519     int* blocklens=(int*)xbt_malloc(blocklength*count);
2520     for (i=0; i<count;i++)blocklens[i]=blocklength;
2521     retval = smpi_datatype_indexed(count, blocklens, indices, old_type, new_type);
2522     xbt_free(blocklens);
2523   }
2524   return retval;
2525 }
2526
2527
2528 int PMPI_Type_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type) {
2529   int retval = 0;
2530
2531   if (old_type == MPI_DATATYPE_NULL) {
2532     retval = MPI_ERR_TYPE;
2533   } else if (count<0){
2534     retval = MPI_ERR_COUNT;
2535   } else {
2536     retval = smpi_datatype_hindexed(count, blocklens, indices, old_type, new_type);
2537   }
2538   return retval;
2539 }
2540
2541 int PMPI_Type_create_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type) {
2542   return PMPI_Type_hindexed(count, blocklens,indices,old_type,new_type);
2543 }
2544
2545 int PMPI_Type_create_hindexed_block(int count, int blocklength, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type) {
2546   int retval,i;
2547
2548   if (old_type == MPI_DATATYPE_NULL) {
2549     retval = MPI_ERR_TYPE;
2550   } else if (count<0){
2551     retval = MPI_ERR_COUNT;
2552   } else {
2553     int* blocklens=(int*)xbt_malloc(blocklength*count);
2554     for (i=0; i<count;i++)blocklens[i]=blocklength;
2555     retval = smpi_datatype_hindexed(count, blocklens, indices, old_type, new_type);
2556     xbt_free(blocklens);
2557   }
2558   return retval;
2559 }
2560
2561
2562 int PMPI_Type_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type) {
2563   int retval = 0;
2564
2565   if (count<0){
2566     retval = MPI_ERR_COUNT;
2567   } else {
2568     retval = smpi_datatype_struct(count, blocklens, indices, old_types, new_type);
2569   }
2570   return retval;
2571 }
2572
2573 int PMPI_Type_create_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type) {
2574   return PMPI_Type_struct(count, blocklens, indices, old_types, new_type);
2575 }
2576
2577
2578 int PMPI_Error_class(int errorcode, int* errorclass) {
2579   // assume smpi uses only standard mpi error codes
2580   *errorclass=errorcode;
2581   return MPI_SUCCESS;
2582 }
2583
2584
2585 int PMPI_Initialized(int* flag) {
2586    *flag=smpi_process_initialized();
2587    return MPI_SUCCESS;
2588 }
2589
2590 /* The topo part of MPI_COMM_WORLD should always be NULL. When other topologies
2591  * will be implemented, not only should we check if the topology is NULL, but
2592  * we should check if it is the good topology type (so we have to add a
2593  *  MPIR_Topo_Type field, and replace the MPI_Topology field by an union)*/
2594
2595 int PMPI_Cart_create(MPI_Comm comm_old, int ndims, int* dims, int* periodic, int reorder, MPI_Comm* comm_cart) {
2596   int retval = 0;
2597   if (comm_old == MPI_COMM_NULL){
2598     retval =  MPI_ERR_COMM;
2599   } else if (ndims < 0 ||
2600            (ndims > 0 && (dims == NULL || 
2601                           periodic == NULL)) ||
2602            comm_cart == NULL) {
2603     retval = MPI_ERR_ARG;
2604   } else{
2605     retval = smpi_mpi_cart_create(comm_old, ndims, dims, periodic, reorder, comm_cart);
2606   }
2607   return retval;
2608 }
2609
2610 int PMPI_Cart_rank(MPI_Comm comm, int* coords, int* rank) {
2611   if(comm == MPI_COMM_NULL || smpi_comm_topo(comm) == NULL) {
2612     return MPI_ERR_TOPOLOGY;
2613   }
2614   if (coords == NULL) {
2615     return MPI_ERR_ARG;
2616   }
2617   return smpi_mpi_cart_rank(comm, coords, rank);
2618 }
2619
2620 int PMPI_Cart_shift(MPI_Comm comm, int direction, int displ, int* source, int* dest) {
2621   if(comm == MPI_COMM_NULL || smpi_comm_topo(comm) == NULL) {
2622     return MPI_ERR_TOPOLOGY;
2623   }
2624   if (source == NULL || dest == NULL || direction < 0 ) {
2625     return MPI_ERR_ARG;
2626   }
2627   return smpi_mpi_cart_shift(comm, direction, displ, source, dest);
2628 }
2629
2630 int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int* coords) {
2631   if(comm == MPI_COMM_NULL || smpi_comm_topo(comm) == NULL) {
2632     return MPI_ERR_TOPOLOGY;
2633   }
2634   if (rank < 0 || rank >= smpi_comm_size(comm)) {
2635     return MPI_ERR_RANK;
2636   }
2637   if (maxdims <= 0) {
2638     return MPI_ERR_ARG;
2639   }
2640   if(coords == NULL) {
2641     return MPI_ERR_ARG;
2642   }
2643   return smpi_mpi_cart_coords(comm, rank, maxdims, coords);
2644 }
2645
2646 int PMPI_Cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, int* coords) {
2647   if(comm == NULL || smpi_comm_topo(comm) == NULL) {
2648     return MPI_ERR_TOPOLOGY;
2649   }
2650   if(maxdims <= 0 || dims == NULL || periods == NULL || coords == NULL) {
2651     return MPI_ERR_ARG;
2652   }
2653   return smpi_mpi_cart_get(comm, maxdims, dims, periods, coords);
2654 }
2655
2656 int PMPI_Cartdim_get(MPI_Comm comm, int* ndims) {
2657   if (comm == MPI_COMM_NULL || smpi_comm_topo(comm) == NULL) {
2658     return MPI_ERR_TOPOLOGY;
2659   }
2660   if (ndims == NULL) {
2661     return MPI_ERR_ARG;
2662   }
2663   return smpi_mpi_cartdim_get(comm, ndims);
2664 }
2665
2666 int PMPI_Dims_create(int nnodes, int ndims, int* dims) {
2667   if(dims == NULL) {
2668     return MPI_ERR_ARG;
2669   }
2670   if (ndims < 1 || nnodes < 1) {
2671     return MPI_ERR_DIMS;
2672   }
2673
2674   return smpi_mpi_dims_create(nnodes, ndims, dims);
2675 }
2676
2677 int PMPI_Cart_sub(MPI_Comm comm, int* remain_dims, MPI_Comm* comm_new) {
2678   if(comm == MPI_COMM_NULL || smpi_comm_topo(comm) == NULL) {
2679     return MPI_ERR_TOPOLOGY;
2680   }
2681   if (comm_new == NULL) {
2682     return MPI_ERR_ARG;
2683   }
2684   return smpi_mpi_cart_sub(comm, remain_dims, comm_new);
2685 }
2686
2687 int PMPI_Type_create_resized(MPI_Datatype oldtype,MPI_Aint lb, MPI_Aint extent, MPI_Datatype *newtype){
2688     if(oldtype == MPI_DATATYPE_NULL) {
2689         return MPI_ERR_TYPE;
2690     }
2691     int blocks[3] = { 1, 1, 1 };
2692     MPI_Aint disps[3] = { lb, 0, lb+extent };
2693     MPI_Datatype types[3] = { MPI_LB, oldtype, MPI_UB };
2694         
2695     s_smpi_mpi_struct_t* subtype = smpi_datatype_struct_create( blocks,
2696                                                                 disps,
2697                                                                 3,
2698                                                                 types
2699                                                                 );
2700     smpi_datatype_create(newtype,oldtype->size, lb, lb + extent, 1 , subtype, DT_FLAG_VECTOR);
2701
2702     (*newtype)->flags &= ~DT_FLAG_COMMITED;
2703     return MPI_SUCCESS;
2704 }
2705
2706
2707
2708 int PMPI_Win_create( void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm, MPI_Win *win){
2709   int retval = 0;
2710   smpi_bench_end();
2711   if (comm == MPI_COMM_NULL) {
2712     retval= MPI_ERR_COMM;
2713   }else if ((base == NULL && size != 0)
2714             || disp_unit <= 0 || size < 0 ){
2715     retval= MPI_ERR_OTHER;
2716   }else{
2717     *win = smpi_mpi_win_create( base, size, disp_unit, info, comm);
2718     retval = MPI_SUCCESS;
2719   }
2720   smpi_bench_begin();
2721   return retval;
2722 }
2723
2724 int PMPI_Win_free( MPI_Win* win){
2725   int retval = 0;
2726   smpi_bench_end();
2727   if (win == NULL || *win == MPI_WIN_NULL) {
2728     retval = MPI_ERR_WIN;
2729   }else{
2730     retval=smpi_mpi_win_free(win);
2731   }
2732   smpi_bench_begin();
2733   return retval;
2734 }
2735
2736
2737 int PMPI_Win_fence( int assert,  MPI_Win win){
2738   int retval = 0;
2739   smpi_bench_end();
2740   if (win == MPI_WIN_NULL) {
2741     retval = MPI_ERR_WIN;
2742   } else {
2743     retval = smpi_mpi_win_fence(assert, win);
2744   }
2745   smpi_bench_begin();
2746   return retval;
2747 }
2748
2749 int PMPI_Get( void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
2750               MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win){
2751   int retval = 0;
2752   smpi_bench_end();
2753   if (win == MPI_WIN_NULL) {
2754     retval = MPI_ERR_WIN;
2755   } else if (target_rank == MPI_PROC_NULL) {
2756     retval = MPI_SUCCESS;
2757   } else if (target_rank <0){
2758     retval = MPI_ERR_RANK;
2759   } else if (target_disp <0){
2760       retval = MPI_ERR_ARG;
2761   } else if (origin_count < 0 || target_count < 0) {
2762     retval = MPI_ERR_COUNT;
2763   } else if (origin_addr==NULL && origin_count > 0){
2764     retval = MPI_ERR_COUNT;
2765   } else if ((!is_datatype_valid(origin_datatype)) ||
2766             (!is_datatype_valid(target_datatype))) {
2767     retval = MPI_ERR_TYPE;
2768   } else {
2769     retval = smpi_mpi_get( origin_addr, origin_count, origin_datatype, target_rank, target_disp, target_count, target_datatype, win);
2770   }
2771   smpi_bench_begin();
2772   return retval;
2773 }
2774
2775 int PMPI_Put( void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
2776               MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win){
2777   int retval = 0;
2778   smpi_bench_end();
2779   if (win == MPI_WIN_NULL) {
2780     retval = MPI_ERR_WIN;
2781   } else if (target_rank == MPI_PROC_NULL) {
2782     retval = MPI_SUCCESS;
2783   } else if (target_rank <0){
2784     retval = MPI_ERR_RANK;
2785   } else if (target_disp <0){
2786     retval = MPI_ERR_ARG;
2787   } else if (origin_count < 0 || target_count < 0) {
2788     retval = MPI_ERR_COUNT;
2789   } else if (origin_addr==NULL && origin_count > 0){
2790     retval = MPI_ERR_COUNT;
2791   } else if ((!is_datatype_valid(origin_datatype)) ||
2792             (!is_datatype_valid(target_datatype))) {
2793     retval = MPI_ERR_TYPE;
2794   } else {
2795     retval = smpi_mpi_put( origin_addr, origin_count, origin_datatype, target_rank, target_disp, target_count, target_datatype, win);
2796   }
2797   smpi_bench_begin();
2798   return retval;
2799 }
2800
2801
2802 int PMPI_Accumulate( void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank,
2803               MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win){
2804   int retval = 0;
2805   smpi_bench_end();
2806   if (win == MPI_WIN_NULL) {
2807     retval = MPI_ERR_WIN;
2808   } else if (target_rank == MPI_PROC_NULL) {
2809     retval = MPI_SUCCESS;
2810   } else if (target_rank <0){
2811     retval = MPI_ERR_RANK;
2812   } else if (target_disp <0){
2813     retval = MPI_ERR_ARG;
2814   } else if (origin_count < 0 || target_count < 0) {
2815     retval = MPI_ERR_COUNT;
2816   } else if (origin_addr==NULL && origin_count > 0){
2817     retval = MPI_ERR_COUNT;
2818   } else if ((!is_datatype_valid(origin_datatype)) ||
2819             (!is_datatype_valid(target_datatype))) {
2820     retval = MPI_ERR_TYPE;
2821   } else if (op == MPI_OP_NULL) {
2822     retval = MPI_ERR_OP;
2823   } else {
2824     retval = smpi_mpi_accumulate( origin_addr, origin_count, origin_datatype, target_rank, target_disp, target_count, target_datatype, op, win);
2825   }
2826   smpi_bench_begin();
2827   return retval;
2828 }
2829
2830
2831 int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr){
2832   void *ptr = xbt_malloc(size);
2833   if(!ptr)
2834     return MPI_ERR_NO_MEM;
2835   else {
2836     *(void **)baseptr = ptr;
2837     return MPI_SUCCESS;
2838   }
2839 }
2840
2841 int PMPI_Free_mem(void *baseptr){
2842   xbt_free(baseptr);
2843   return MPI_SUCCESS;
2844 }
2845
2846 int PMPI_Type_set_name(MPI_Datatype  datatype, char * name)
2847 {
2848   int retval = 0;
2849   if (datatype == MPI_DATATYPE_NULL)  {
2850     retval = MPI_ERR_TYPE;
2851   } else if (name == NULL)  {
2852     retval = MPI_ERR_ARG;
2853   } else {
2854     smpi_datatype_set_name(datatype, name);
2855     retval = MPI_SUCCESS;
2856   }
2857   return retval;
2858 }
2859
2860 int PMPI_Type_get_name(MPI_Datatype  datatype, char * name, int* len)
2861 {
2862   int retval = 0;
2863
2864   if (datatype == MPI_DATATYPE_NULL)  {
2865     retval = MPI_ERR_TYPE;
2866   } else if (name == NULL)  {
2867     retval = MPI_ERR_ARG;
2868   } else {
2869     smpi_datatype_get_name(datatype, name, len);
2870     retval = MPI_SUCCESS;
2871   }
2872   return retval;
2873 }
2874
2875 /* The following calls are not yet implemented and will fail at runtime. */
2876 /* Once implemented, please move them above this notice. */
2877
2878 #define NOT_YET_IMPLEMENTED {                                           \
2879     XBT_WARN("Not yet implemented : %s. Please contact the Simgrid team if support is needed", __FUNCTION__); \
2880     return MPI_SUCCESS;                                                 \
2881   }
2882
2883
2884
2885 int PMPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int* size) {
2886   NOT_YET_IMPLEMENTED
2887 }
2888
2889
2890 int PMPI_Cart_map(MPI_Comm comm_old, int ndims, int* dims, int* periods, int* newrank) {
2891   NOT_YET_IMPLEMENTED
2892 }
2893
2894
2895 int PMPI_Graph_create(MPI_Comm comm_old, int nnodes, int* index, int* edges, int reorder, MPI_Comm* comm_graph) {
2896   NOT_YET_IMPLEMENTED
2897 }
2898
2899 int PMPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges, int* index, int* edges) {
2900   NOT_YET_IMPLEMENTED
2901 }
2902
2903 int PMPI_Graph_map(MPI_Comm comm_old, int nnodes, int* index, int* edges, int* newrank) {
2904   NOT_YET_IMPLEMENTED
2905 }
2906
2907 int PMPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors, int* neighbors) {
2908   NOT_YET_IMPLEMENTED
2909 }
2910
2911 int PMPI_Graph_neighbors_count(MPI_Comm comm, int rank, int* nneighbors) {
2912   NOT_YET_IMPLEMENTED
2913 }
2914
2915 int PMPI_Graphdims_get(MPI_Comm comm, int* nnodes, int* nedges) {
2916   NOT_YET_IMPLEMENTED
2917 }
2918
2919 int PMPI_Topo_test(MPI_Comm comm, int* top_type) {
2920   NOT_YET_IMPLEMENTED
2921 }
2922
2923 int PMPI_Errhandler_create(MPI_Handler_function* function, MPI_Errhandler* errhandler) {
2924   NOT_YET_IMPLEMENTED
2925 }
2926
2927 int PMPI_Errhandler_free(MPI_Errhandler* errhandler) {
2928   NOT_YET_IMPLEMENTED
2929 }
2930
2931 int PMPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler* errhandler) {
2932   NOT_YET_IMPLEMENTED
2933 }
2934
2935 int PMPI_Error_string(int errorcode, char* string, int* resultlen) {
2936   NOT_YET_IMPLEMENTED
2937 }
2938
2939 int PMPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler) {
2940   NOT_YET_IMPLEMENTED
2941 }
2942
2943 int PMPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) {
2944   NOT_YET_IMPLEMENTED
2945 }
2946
2947 int PMPI_Win_set_errhandler(MPI_Win win, MPI_Errhandler errhandler) {
2948   NOT_YET_IMPLEMENTED
2949 }
2950
2951 int PMPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler* errhandler) {
2952   NOT_YET_IMPLEMENTED
2953 }
2954
2955 int PMPI_Cancel(MPI_Request* request) {
2956   NOT_YET_IMPLEMENTED
2957 }
2958
2959 int PMPI_Buffer_attach(void* buffer, int size) {
2960   NOT_YET_IMPLEMENTED
2961 }
2962
2963 int PMPI_Buffer_detach(void* buffer, int* size) {
2964   NOT_YET_IMPLEMENTED
2965 }
2966
2967 int PMPI_Comm_test_inter(MPI_Comm comm, int* flag) {
2968   NOT_YET_IMPLEMENTED
2969 }
2970
2971 int PMPI_Comm_get_attr (MPI_Comm comm, int comm_keyval, void *attribute_val, int *flag)
2972 {
2973   NOT_YET_IMPLEMENTED
2974 }
2975
2976 int PMPI_Comm_set_attr (MPI_Comm comm, int comm_keyval, void *attribute_val)
2977 {
2978   NOT_YET_IMPLEMENTED
2979 }
2980
2981 int PMPI_Comm_delete_attr (MPI_Comm comm, int comm_keyval)
2982 {
2983   NOT_YET_IMPLEMENTED
2984 }
2985
2986 int PMPI_Comm_create_keyval(MPI_Comm_copy_attr_function* copy_fn, MPI_Comm_delete_attr_function* delete_fn, int* keyval, void* extra_state)
2987 {
2988   NOT_YET_IMPLEMENTED
2989 }
2990
2991 int PMPI_Comm_free_keyval(int* keyval) {
2992   NOT_YET_IMPLEMENTED
2993 }
2994
2995 int PMPI_Pcontrol(const int level )
2996 {
2997   NOT_YET_IMPLEMENTED
2998 }
2999
3000 int PMPI_Unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Datatype type, MPI_Comm comm) {
3001   NOT_YET_IMPLEMENTED
3002 }
3003
3004 int PMPI_Type_get_attr (MPI_Datatype type, int type_keyval, void *attribute_val, int* flag)
3005 {
3006   NOT_YET_IMPLEMENTED
3007 }
3008
3009 int PMPI_Type_set_attr (MPI_Datatype type, int type_keyval, void *attribute_val)
3010 {
3011   NOT_YET_IMPLEMENTED
3012 }
3013
3014 int PMPI_Type_delete_attr (MPI_Datatype type, int comm_keyval)
3015 {
3016   NOT_YET_IMPLEMENTED
3017 }
3018
3019 int PMPI_Type_create_keyval(MPI_Type_copy_attr_function* copy_fn, MPI_Type_delete_attr_function* delete_fn, int* keyval, void* extra_state)
3020 {
3021   NOT_YET_IMPLEMENTED
3022 }
3023
3024 int PMPI_Type_free_keyval(int* keyval) {
3025   NOT_YET_IMPLEMENTED
3026 }
3027
3028 int PMPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm, int remote_leader, int tag, MPI_Comm* comm_out) {
3029   NOT_YET_IMPLEMENTED
3030 }
3031
3032 int PMPI_Intercomm_merge(MPI_Comm comm, int high, MPI_Comm* comm_out) {
3033   NOT_YET_IMPLEMENTED
3034 }
3035
3036 int PMPI_Bsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) {
3037   NOT_YET_IMPLEMENTED
3038 }
3039
3040 int PMPI_Bsend_init(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
3041   NOT_YET_IMPLEMENTED
3042 }
3043
3044 int PMPI_Ibsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
3045   NOT_YET_IMPLEMENTED
3046 }
3047
3048 int PMPI_Comm_remote_group(MPI_Comm comm, MPI_Group* group) {
3049   NOT_YET_IMPLEMENTED
3050 }
3051
3052 int PMPI_Comm_remote_size(MPI_Comm comm, int* size) {
3053   NOT_YET_IMPLEMENTED
3054 }
3055
3056 int PMPI_Attr_delete(MPI_Comm comm, int keyval) {
3057   NOT_YET_IMPLEMENTED
3058 }
3059
3060 int PMPI_Attr_get(MPI_Comm comm, int keyval, void* attr_value, int* flag) {
3061   NOT_YET_IMPLEMENTED
3062 }
3063
3064 int PMPI_Attr_put(MPI_Comm comm, int keyval, void* attr_value) {
3065   NOT_YET_IMPLEMENTED
3066 }
3067
3068 int PMPI_Rsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) {
3069   NOT_YET_IMPLEMENTED
3070 }
3071
3072 int PMPI_Rsend_init(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
3073   NOT_YET_IMPLEMENTED
3074 }
3075
3076 int PMPI_Irsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
3077   NOT_YET_IMPLEMENTED
3078 }
3079
3080 int PMPI_Keyval_create(MPI_Copy_function* copy_fn, MPI_Delete_function* delete_fn, int* keyval, void* extra_state) {
3081   NOT_YET_IMPLEMENTED
3082 }
3083
3084 int PMPI_Keyval_free(int* keyval) {
3085   NOT_YET_IMPLEMENTED
3086 }
3087
3088 int PMPI_Test_cancelled(MPI_Status* status, int* flag) {
3089   NOT_YET_IMPLEMENTED
3090 }
3091
3092 int PMPI_Pack(void* inbuf, int incount, MPI_Datatype type, void* outbuf, int outcount, int* position, MPI_Comm comm) {
3093   NOT_YET_IMPLEMENTED
3094 }
3095
3096 int PMPI_Pack_external_size(char *datarep, int incount, MPI_Datatype datatype, MPI_Aint *size){
3097   NOT_YET_IMPLEMENTED
3098 }
3099
3100 int PMPI_Pack_external(char *datarep, void *inbuf, int incount, MPI_Datatype datatype, void *outbuf, MPI_Aint outcount, MPI_Aint *position){
3101   NOT_YET_IMPLEMENTED
3102 }
3103
3104 int PMPI_Unpack_external( char *datarep, void *inbuf, MPI_Aint insize, MPI_Aint *position, void *outbuf, int outcount, MPI_Datatype datatype){
3105   NOT_YET_IMPLEMENTED
3106 }
3107
3108 int PMPI_Get_elements(MPI_Status* status, MPI_Datatype datatype, int* elements) {
3109   NOT_YET_IMPLEMENTED
3110 }
3111
3112 int PMPI_Info_create( MPI_Info *info){
3113   NOT_YET_IMPLEMENTED
3114 }
3115
3116 int PMPI_Info_set( MPI_Info info, char *key, char *value){
3117   NOT_YET_IMPLEMENTED
3118 }
3119
3120 int PMPI_Info_free( MPI_Info *info){
3121   NOT_YET_IMPLEMENTED
3122 }
3123
3124 int PMPI_Type_get_envelope( MPI_Datatype datatype, int *num_integers,
3125                             int *num_addresses, int *num_datatypes, int *combiner){
3126   NOT_YET_IMPLEMENTED
3127 }
3128
3129 int PMPI_Type_get_contents(MPI_Datatype datatype, int max_integers, int max_addresses,
3130                            int max_datatypes, int* array_of_integers, MPI_Aint* array_of_addresses,
3131                            MPI_Datatype* array_of_datatypes){
3132   NOT_YET_IMPLEMENTED
3133 }
3134
3135 int PMPI_Type_create_darray(int size, int rank, int ndims, int* array_of_gsizes,
3136                             int* array_of_distribs, int* array_of_dargs, int* array_of_psizes,
3137                             int order, MPI_Datatype oldtype, MPI_Datatype *newtype) {
3138   NOT_YET_IMPLEMENTED
3139 }
3140
3141 int PMPI_Type_create_subarray(int ndims,int *array_of_sizes, int *array_of_subsizes, int *array_of_starts, int order, MPI_Datatype oldtype, MPI_Datatype *newtype){
3142   NOT_YET_IMPLEMENTED
3143 }
3144
3145 int PMPI_Type_match_size(int typeclass,int size,MPI_Datatype *datatype){
3146   NOT_YET_IMPLEMENTED
3147 }
3148
3149 int PMPI_Alltoallw( void *sendbuf, int *sendcnts, int *sdispls, MPI_Datatype *sendtypes,
3150                     void *recvbuf, int *recvcnts, int *rdispls, MPI_Datatype *recvtypes,
3151                     MPI_Comm comm){
3152   NOT_YET_IMPLEMENTED
3153 }
3154
3155 int PMPI_Comm_set_name(MPI_Comm comm, char* name){
3156   NOT_YET_IMPLEMENTED
3157 }
3158
3159 int PMPI_Comm_dup_with_info(MPI_Comm comm, MPI_Info info, MPI_Comm * newcomm){
3160   NOT_YET_IMPLEMENTED
3161 }
3162
3163 int PMPI_Comm_split_type(MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm){
3164   NOT_YET_IMPLEMENTED
3165 }
3166
3167 int PMPI_Comm_set_info (MPI_Comm comm, MPI_Info info){
3168   NOT_YET_IMPLEMENTED
3169 }
3170
3171 int PMPI_Comm_get_info (MPI_Comm comm, MPI_Info* info){
3172   NOT_YET_IMPLEMENTED
3173 }
3174
3175 int PMPI_Info_get(MPI_Info info,char *key,int valuelen, char *value, int *flag){
3176   NOT_YET_IMPLEMENTED
3177 }
3178
3179 int PMPI_Comm_create_errhandler( MPI_Comm_errhandler_fn *function, MPI_Errhandler *errhandler){
3180   NOT_YET_IMPLEMENTED
3181 }
3182
3183 int PMPI_Add_error_class( int *errorclass){
3184   NOT_YET_IMPLEMENTED
3185 }
3186
3187 int PMPI_Add_error_code(  int errorclass, int *errorcode){
3188   NOT_YET_IMPLEMENTED
3189 }
3190
3191 int PMPI_Add_error_string( int errorcode, char *string){
3192   NOT_YET_IMPLEMENTED
3193 }
3194
3195 int PMPI_Comm_call_errhandler(MPI_Comm comm,int errorcode){
3196   NOT_YET_IMPLEMENTED
3197 }
3198
3199 int PMPI_Info_dup(MPI_Info info, MPI_Info *newinfo){
3200   NOT_YET_IMPLEMENTED
3201 }
3202
3203 int PMPI_Info_delete(MPI_Info info, char *key){
3204   NOT_YET_IMPLEMENTED
3205 }
3206
3207 int PMPI_Info_get_nkeys( MPI_Info info, int *nkeys){
3208   NOT_YET_IMPLEMENTED
3209 }
3210
3211 int PMPI_Info_get_nthkey( MPI_Info info, int n, char *key){
3212   NOT_YET_IMPLEMENTED
3213 }
3214
3215 int PMPI_Info_get_valuelen( MPI_Info info, char *key, int *valuelen, int *flag){
3216   NOT_YET_IMPLEMENTED
3217 }
3218
3219 int PMPI_Request_get_status( MPI_Request request, int *flag, MPI_Status *status){
3220   NOT_YET_IMPLEMENTED
3221 }
3222
3223 int PMPI_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){
3224   NOT_YET_IMPLEMENTED
3225 }
3226
3227 int PMPI_Grequest_complete( MPI_Request request){
3228   NOT_YET_IMPLEMENTED
3229 }
3230
3231 int PMPI_Status_set_cancelled(MPI_Status *status,int flag){
3232   NOT_YET_IMPLEMENTED
3233 }
3234
3235 int PMPI_Status_set_elements( MPI_Status *status, MPI_Datatype datatype, int count){
3236   NOT_YET_IMPLEMENTED
3237 }
3238
3239 int PMPI_Comm_connect( char *port_name, MPI_Info info, int root, MPI_Comm comm, MPI_Comm *newcomm){
3240   NOT_YET_IMPLEMENTED
3241 }
3242
3243 int PMPI_Publish_name( char *service_name, MPI_Info info, char *port_name){
3244   NOT_YET_IMPLEMENTED
3245 }
3246
3247 int PMPI_Unpublish_name( char *service_name, MPI_Info info, char *port_name){
3248   NOT_YET_IMPLEMENTED
3249 }
3250
3251 int PMPI_Lookup_name( char *service_name, MPI_Info info, char *port_name){
3252   NOT_YET_IMPLEMENTED
3253 }
3254
3255 int PMPI_Comm_join( int fd, MPI_Comm *intercomm){
3256   NOT_YET_IMPLEMENTED
3257 }
3258
3259 int PMPI_Open_port( MPI_Info info, char *port_name){
3260   NOT_YET_IMPLEMENTED
3261 }
3262
3263 int PMPI_Close_port(char *port_name){
3264   NOT_YET_IMPLEMENTED
3265 }
3266
3267 int PMPI_Comm_accept( char *port_name, MPI_Info info, int root, MPI_Comm comm, MPI_Comm *newcomm){
3268   NOT_YET_IMPLEMENTED
3269 }
3270
3271 int PMPI_Comm_spawn( char *command, char **argv, int maxprocs, MPI_Info info, int root, MPI_Comm comm, MPI_Comm *intercomm, int* array_of_errcodes){
3272   NOT_YET_IMPLEMENTED
3273 }
3274
3275 int PMPI_Comm_spawn_multiple( int count, char **array_of_commands, char*** array_of_argv,
3276                               int* array_of_maxprocs, MPI_Info* array_of_info, int root,
3277                               MPI_Comm comm, MPI_Comm *intercomm, int* array_of_errcodes){
3278   NOT_YET_IMPLEMENTED
3279 }
3280
3281 int PMPI_Comm_get_parent( MPI_Comm *parent){
3282   NOT_YET_IMPLEMENTED
3283 }