Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
405e6c8aa736ac9cf6b1620047c746e7c30a37bb
[simgrid.git] / src / smpi / smpi_f77.c
1 /* Copyright (c) 2010-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <limits.h>
8 #include <stdio.h>
9
10 #include "private.h"
11 #include "xbt.h"
12
13 static xbt_dict_t comm_lookup = NULL;
14 static xbt_dict_t group_lookup = NULL;
15 static xbt_dict_t request_lookup = NULL;
16 static xbt_dict_t datatype_lookup = NULL;
17 static xbt_dict_t op_lookup = NULL;
18 static xbt_dict_t win_lookup = NULL;
19 static xbt_dict_t info_lookup = NULL;
20
21 static int running_processes = 0;
22
23 #if defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__)
24 typedef int integer;
25 typedef unsigned int uinteger;
26 #else
27 typedef long int integer;
28 typedef unsigned long int uinteger;
29 #endif
30
31 /* Bindings for MPI special values */
32
33   struct s_smpi_common {
34     integer _MPI_IN_PLACE;
35     integer _MPI_BOTTOM;
36     integer _MPI_STATUS_IGNORE;
37     integer _MPI_STATUSES_IGNORE;
38   } smpi_;
39
40
41
42 /* Convert between Fortran and C */
43 #define FORT_ADDR(addr, val)                                         \
44   (((void *)(addr) == (void*) &(smpi_._ ## val))                  \
45    ? (val) : (void *)(addr))
46 #define FORT_BOTTOM(addr)          FORT_ADDR(addr, MPI_BOTTOM)
47 #define FORT_IN_PLACE(addr)        FORT_ADDR(addr, MPI_IN_PLACE)
48 #define FORT_STATUS_IGNORE(addr)   FORT_ADDR(addr, MPI_STATUS_IGNORE)
49 #define FORT_STATUSES_IGNORE(addr) FORT_ADDR(addr, MPI_STATUSES_IGNORE)
50
51 #define KEY_SIZE (sizeof(int) * 2 + 1)
52
53
54 static char* get_key(char* key, int id) {
55   snprintf(key, KEY_SIZE, "%x",id);
56   return key;
57 }
58 static char* get_key_id(char* key, int id) {
59   snprintf(key, KEY_SIZE, "%x_%d",id, smpi_process_index());
60   return key;
61 }
62
63 int smpi_comm_c2f(MPI_Comm comm) {
64   static int comm_id = 0;
65   char key[KEY_SIZE];
66   xbt_dict_set(comm_lookup, comm==MPI_COMM_WORLD? get_key(key, comm_id) : get_key_id(key, comm_id), comm, NULL);
67   comm_id++;
68   return comm_id-1;
69 }
70
71 static void free_comm(int comm) {
72   char key[KEY_SIZE];
73   xbt_dict_remove(comm_lookup, comm==0? get_key(key, comm) : get_key_id(key, comm));
74 }
75
76 MPI_Comm smpi_comm_f2c(int comm) {
77   if(comm == -2) {
78     return MPI_COMM_SELF;
79   }else if(comm==0){
80     return MPI_COMM_WORLD;
81   }     else if(comm_lookup && comm >= 0) {
82
83       char key[KEY_SIZE];
84       MPI_Comm tmp =  (MPI_Comm)xbt_dict_get_or_null(comm_lookup,get_key_id(key, comm));
85       return tmp != NULL ? tmp : MPI_COMM_NULL ;
86   }
87   return MPI_COMM_NULL;
88 }
89
90 int smpi_group_c2f(MPI_Group group) {
91   static int group_id = 0;
92   char key[KEY_SIZE];
93   xbt_dict_set(group_lookup, get_key(key, group_id), group, NULL);
94   group_id++;
95   return group_id-1;
96 }
97
98 MPI_Group smpi_group_f2c(int group) {
99   if(group == -2) {
100     return MPI_GROUP_EMPTY;
101   } else if(group_lookup && group >= 0) {
102     char key[KEY_SIZE];
103     return (MPI_Group)xbt_dict_get_or_null(group_lookup, get_key(key, group));
104   }
105   return MPI_GROUP_NULL;
106 }
107
108 static void free_group(int group) {
109   char key[KEY_SIZE];
110   xbt_dict_remove(group_lookup, get_key(key, group));
111 }
112
113
114
115 int smpi_request_c2f(MPI_Request req) {
116   static int request_id = 0;
117   char key[KEY_SIZE];
118   xbt_dict_set(request_lookup, get_key_id(key, request_id), req, NULL);
119   request_id++;
120   return request_id-1;
121 }
122
123 MPI_Request smpi_request_f2c(int req) {
124   char key[KEY_SIZE];
125   if(req==MPI_FORTRAN_REQUEST_NULL)return MPI_REQUEST_NULL;
126   return (MPI_Request)xbt_dict_get(request_lookup, get_key_id(key, req));
127 }
128
129 static void free_request(int request) {
130   char key[KEY_SIZE];
131   if(request!=MPI_FORTRAN_REQUEST_NULL)
132   xbt_dict_remove(request_lookup, get_key_id(key, request));
133 }
134
135 int smpi_type_c2f(MPI_Datatype datatype) {
136   static int datatype_id = 0;
137   char key[KEY_SIZE];
138   xbt_dict_set(datatype_lookup, get_key(key, datatype_id), datatype, NULL);
139   datatype_id++;
140   return datatype_id-1;
141 }
142
143 MPI_Datatype smpi_type_f2c(int datatype) {
144   char key[KEY_SIZE];
145   return datatype >= 0
146          ? (MPI_Datatype)xbt_dict_get_or_null(datatype_lookup, get_key(key, datatype))
147          : MPI_DATATYPE_NULL;
148 }
149
150 static void free_datatype(int datatype) {
151   char key[KEY_SIZE];
152   xbt_dict_remove(datatype_lookup, get_key(key, datatype));
153 }
154
155 int smpi_op_c2f(MPI_Op op) {
156   static int op_id = 0;
157   char key[KEY_SIZE];
158   xbt_dict_set(op_lookup, get_key(key, op_id), op, NULL);
159   op_id++;
160   return op_id-1;
161 }
162
163 MPI_Op smpi_op_f2c(int op) {
164   char key[KEY_SIZE];
165    return op >= 0
166           ? (MPI_Op)xbt_dict_get_or_null(op_lookup,  get_key(key, op))
167           : MPI_OP_NULL;
168 }
169
170 static void free_op(int op) {
171   char key[KEY_SIZE];
172   xbt_dict_remove(op_lookup, get_key(key, op));
173 }
174
175 int smpi_win_c2f(MPI_Win win) {
176   static int win_id = 0;
177   char key[KEY_SIZE];
178   xbt_dict_set(win_lookup, get_key(key, win_id), win, NULL);
179   win_id++;
180   return win_id-1;
181 }
182
183 MPI_Win smpi_win_f2c(int win) {
184   char key[KEY_SIZE];
185    return win >= 0
186           ? (MPI_Win)xbt_dict_get_or_null(win_lookup,  get_key(key, win))
187           : MPI_WIN_NULL;
188 }
189
190 static void free_win(int win) {
191   char key[KEY_SIZE];
192   xbt_dict_remove(win_lookup, get_key(key, win));
193 }
194
195
196 int smpi_info_c2f(MPI_Info info) {
197   static int info_id = 0;
198   char key[KEY_SIZE];
199   xbt_dict_set(info_lookup, get_key(key, info_id), info, NULL);
200   info_id++;
201   return info_id-1;
202 }
203
204 MPI_Info smpi_info_f2c(int info) {
205   char key[KEY_SIZE];
206    return info >= 0
207           ? (MPI_Info)xbt_dict_get_or_null(info_lookup,  get_key(key, info))
208           : MPI_INFO_NULL;
209 }
210
211 static void free_info(int info) {
212   char key[KEY_SIZE];
213   xbt_dict_remove(info_lookup, get_key(key, info));
214 }
215
216 static void smpi_init_fortran_types(){
217    if(!comm_lookup){
218      comm_lookup = xbt_dict_new_homogeneous(NULL);
219      smpi_comm_c2f(MPI_COMM_WORLD);
220      group_lookup = xbt_dict_new_homogeneous(NULL);
221      request_lookup = xbt_dict_new_homogeneous(NULL);
222      datatype_lookup = xbt_dict_new_homogeneous(NULL);
223      win_lookup = xbt_dict_new_homogeneous(NULL);
224      info_lookup = xbt_dict_new_homogeneous(NULL);
225      smpi_type_c2f(MPI_BYTE);
226      smpi_type_c2f(MPI_CHAR);
227      #if defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__)
228      smpi_type_c2f(MPI_INT);
229      smpi_type_c2f(MPI_INT);
230      #else
231      smpi_type_c2f(MPI_LONG);
232      smpi_type_c2f(MPI_LONG);
233      #endif
234      smpi_type_c2f(MPI_INT8_T);
235      smpi_type_c2f(MPI_INT16_T);
236      smpi_type_c2f(MPI_INT32_T);
237      smpi_type_c2f(MPI_INT64_T);
238      smpi_type_c2f(MPI_FLOAT);
239      smpi_type_c2f(MPI_FLOAT);
240      smpi_type_c2f(MPI_DOUBLE);
241      smpi_type_c2f(MPI_DOUBLE);
242      smpi_type_c2f(MPI_C_FLOAT_COMPLEX);
243      smpi_type_c2f(MPI_C_DOUBLE_COMPLEX);
244      #if defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__)
245      smpi_type_c2f(MPI_2INT);
246      #else
247      smpi_type_c2f(MPI_2LONG);
248      #endif
249      smpi_type_c2f(MPI_UINT8_T);
250      smpi_type_c2f(MPI_UINT16_T);
251      smpi_type_c2f(MPI_UINT32_T);
252      smpi_type_c2f(MPI_UINT64_T);
253      smpi_type_c2f(MPI_2FLOAT);
254      smpi_type_c2f(MPI_2DOUBLE);
255      smpi_type_c2f(MPI_DOUBLE);
256      smpi_type_c2f(MPI_DOUBLE);
257      smpi_type_c2f(MPI_INT);
258      smpi_type_c2f(MPI_DATATYPE_NULL);
259      smpi_type_c2f(MPI_DATATYPE_NULL);
260      smpi_type_c2f(MPI_DATATYPE_NULL);
261      smpi_type_c2f(MPI_DATATYPE_NULL);
262      op_lookup = xbt_dict_new_homogeneous(NULL);
263      smpi_op_c2f(MPI_MAX);
264      smpi_op_c2f(MPI_MIN);
265      smpi_op_c2f(MPI_MAXLOC);
266      smpi_op_c2f(MPI_MINLOC);
267      smpi_op_c2f(MPI_SUM);
268      smpi_op_c2f(MPI_PROD);
269      smpi_op_c2f(MPI_LAND);
270      smpi_op_c2f(MPI_LOR);
271      smpi_op_c2f(MPI_LXOR);
272      smpi_op_c2f(MPI_BAND);
273      smpi_op_c2f(MPI_BOR);
274      smpi_op_c2f(MPI_BXOR);
275    }
276 }
277
278
279 void mpi_init_(int* ierr) {
280     smpi_init_fortran_types();
281    *ierr = MPI_Init(NULL, NULL);
282    running_processes++;
283 }
284
285 void mpi_finalize_(int* ierr) {
286    *ierr = MPI_Finalize();
287    running_processes--;
288    if(running_processes==0){
289      xbt_dict_free(&op_lookup);
290      xbt_dict_free(&datatype_lookup);
291      xbt_dict_free(&request_lookup);
292      xbt_dict_free(&group_lookup);
293      xbt_dict_free(&comm_lookup);
294      xbt_dict_free(&win_lookup);
295    }
296 }
297
298 void mpi_abort_(int* comm, int* errorcode, int* ierr) {
299   *ierr = MPI_Abort(smpi_comm_f2c(*comm), *errorcode);
300 }
301
302 void mpi_comm_rank_(int* comm, int* rank, int* ierr) {
303    *ierr = MPI_Comm_rank(smpi_comm_f2c(*comm), rank);
304 }
305
306 void mpi_comm_size_(int* comm, int* size, int* ierr) {
307    *ierr = MPI_Comm_size(smpi_comm_f2c(*comm), size);
308 }
309
310 double mpi_wtime_(void) {
311    return MPI_Wtime();
312 }
313
314 double mpi_wtick_(void) {
315   return MPI_Wtick();
316 }
317
318 void mpi_comm_dup_(int* comm, int* newcomm, int* ierr) {
319   MPI_Comm tmp;
320
321   *ierr = MPI_Comm_dup(smpi_comm_f2c(*comm), &tmp);
322   if(*ierr == MPI_SUCCESS) {
323     *newcomm = smpi_comm_c2f(tmp);
324   }
325 }
326
327 void mpi_comm_create_(int* comm, int* group, int* newcomm, int* ierr) {
328   MPI_Comm tmp;
329
330   *ierr = MPI_Comm_create(smpi_comm_f2c(*comm),smpi_group_f2c(*group), &tmp);
331   if(*ierr == MPI_SUCCESS) {
332     *newcomm = smpi_comm_c2f(tmp);
333   }
334 }
335
336
337 void mpi_comm_free_(int* comm, int* ierr) {
338   MPI_Comm tmp = smpi_comm_f2c(*comm);
339
340   *ierr = MPI_Comm_free(&tmp);
341
342   if(*ierr == MPI_SUCCESS) {
343     free_comm(*comm);
344   }
345 }
346
347 void mpi_comm_split_(int* comm, int* color, int* key, int* comm_out, int* ierr) {
348   MPI_Comm tmp;
349
350   *ierr = MPI_Comm_split(smpi_comm_f2c(*comm), *color, *key, &tmp);
351   if(*ierr == MPI_SUCCESS) {
352     *comm_out = smpi_comm_c2f(tmp);
353   }
354 }
355
356 void mpi_group_incl_(int* group, int* n, int* ranks, int* group_out, int* ierr) {
357   MPI_Group tmp;
358
359   *ierr = MPI_Group_incl(smpi_group_f2c(*group), *n, ranks, &tmp);
360   if(*ierr == MPI_SUCCESS) {
361     *group_out = smpi_group_c2f(tmp);
362   }
363 }
364
365 void mpi_comm_group_(int* comm, int* group_out,  int* ierr) {
366   MPI_Group tmp;
367
368   *ierr = MPI_Comm_group(smpi_comm_f2c(*comm), &tmp);
369   if(*ierr == MPI_SUCCESS) {
370     *group_out = smpi_group_c2f(tmp);
371   }
372 }
373
374
375 void mpi_initialized_(int* flag, int* ierr){
376   *ierr = MPI_Initialized(flag);
377 }
378
379 void mpi_send_init_(void *buf, int* count, int* datatype, int* dst, int* tag,
380                      int* comm, int* request, int* ierr) {
381   MPI_Request req;
382
383   *ierr = MPI_Send_init(buf, *count, smpi_type_f2c(*datatype), *dst, *tag,
384                         smpi_comm_f2c(*comm), &req);
385   if(*ierr == MPI_SUCCESS) {
386     *request = smpi_request_c2f(req);
387   }
388 }
389
390 void mpi_isend_(void *buf, int* count, int* datatype, int* dst,
391                  int* tag, int* comm, int* request, int* ierr) {
392   MPI_Request req;
393   buf = (char *) FORT_BOTTOM(buf);
394   *ierr = MPI_Isend(buf, *count, smpi_type_f2c(*datatype), *dst, *tag,
395                     smpi_comm_f2c(*comm), &req);
396   if(*ierr == MPI_SUCCESS) {
397     *request = smpi_request_c2f(req);
398   }
399 }
400
401 void mpi_irsend_(void *buf, int* count, int* datatype, int* dst,
402                  int* tag, int* comm, int* request, int* ierr) {
403   MPI_Request req;
404   buf = (char *) FORT_BOTTOM(buf);
405   *ierr = MPI_Irsend(buf, *count, smpi_type_f2c(*datatype), *dst, *tag,
406                     smpi_comm_f2c(*comm), &req);
407   if(*ierr == MPI_SUCCESS) {
408     *request = smpi_request_c2f(req);
409   }
410 }
411
412 void mpi_send_(void* buf, int* count, int* datatype, int* dst,
413                 int* tag, int* comm, int* ierr) {
414    *ierr = MPI_Send(buf, *count, smpi_type_f2c(*datatype), *dst, *tag,
415                     smpi_comm_f2c(*comm));
416 }
417
418 void mpi_rsend_(void* buf, int* count, int* datatype, int* dst,
419                 int* tag, int* comm, int* ierr) {
420    *ierr = MPI_Rsend(buf, *count, smpi_type_f2c(*datatype), *dst, *tag,
421                     smpi_comm_f2c(*comm));
422 }
423
424 void mpi_sendrecv_(void* sendbuf, int* sendcount, int* sendtype, int* dst,
425                 int* sendtag, void *recvbuf, int* recvcount,
426                 int* recvtype, int* src, int* recvtag,
427                 int* comm, MPI_Status* status, int* ierr) {
428    *ierr = MPI_Sendrecv(sendbuf, *sendcount, smpi_type_f2c(*sendtype), *dst,
429        *sendtag, recvbuf, *recvcount,smpi_type_f2c(*recvtype), *src, *recvtag,
430        smpi_comm_f2c(*comm), FORT_STATUS_IGNORE(status));
431 }
432
433 void mpi_recv_init_(void *buf, int* count, int* datatype, int* src, int* tag,
434                      int* comm, int* request, int* ierr) {
435   MPI_Request req;
436
437   *ierr = MPI_Recv_init(buf, *count, smpi_type_f2c(*datatype), *src, *tag,
438                         smpi_comm_f2c(*comm), &req);
439   if(*ierr == MPI_SUCCESS) {
440     *request = smpi_request_c2f(req);
441   }
442 }
443
444 void mpi_irecv_(void *buf, int* count, int* datatype, int* src, int* tag,
445                  int* comm, int* request, int* ierr) {
446   MPI_Request req;
447   buf = (char *) FORT_BOTTOM(buf);
448   *ierr = MPI_Irecv(buf, *count, smpi_type_f2c(*datatype), *src, *tag,
449                     smpi_comm_f2c(*comm), &req);
450   if(*ierr == MPI_SUCCESS) {
451     *request = smpi_request_c2f(req);
452   }
453 }
454
455 void mpi_recv_(void* buf, int* count, int* datatype, int* src,
456                 int* tag, int* comm, MPI_Status* status, int* ierr) {
457    *ierr = MPI_Recv(buf, *count, smpi_type_f2c(*datatype), *src, *tag,
458                     smpi_comm_f2c(*comm), status);
459 }
460
461 void mpi_start_(int* request, int* ierr) {
462   MPI_Request req = smpi_request_f2c(*request);
463
464   *ierr = MPI_Start(&req);
465 }
466
467 void mpi_startall_(int* count, int* requests, int* ierr) {
468   MPI_Request* reqs;
469   int i;
470
471   reqs = xbt_new(MPI_Request, *count);
472   for(i = 0; i < *count; i++) {
473     reqs[i] = smpi_request_f2c(requests[i]);
474   }
475   *ierr = MPI_Startall(*count, reqs);
476   free(reqs);
477 }
478
479 void mpi_wait_(int* request, MPI_Status* status, int* ierr) {
480    MPI_Request req = smpi_request_f2c(*request);
481    
482    *ierr = MPI_Wait(&req, FORT_STATUS_IGNORE(status));
483    if(req==MPI_REQUEST_NULL){
484      free_request(*request);
485      *request=MPI_FORTRAN_REQUEST_NULL;
486    }
487 }
488
489 void mpi_waitany_(int* count, int* requests, int* index, MPI_Status* status, int* ierr) {
490   MPI_Request* reqs;
491   int i;
492
493   reqs = xbt_new(MPI_Request, *count);
494   for(i = 0; i < *count; i++) {
495     reqs[i] = smpi_request_f2c(requests[i]);
496   }
497   *ierr = MPI_Waitany(*count, reqs, index, status);
498   if(reqs[*index]==MPI_REQUEST_NULL){
499       free_request(requests[*index]);
500       requests[*index]=MPI_FORTRAN_REQUEST_NULL;
501   }
502   free(reqs);
503 }
504
505 void mpi_waitall_(int* count, int* requests, MPI_Status* status, int* ierr) {
506   MPI_Request* reqs;
507   int i;
508
509   reqs = xbt_new(MPI_Request, *count);
510   for(i = 0; i < *count; i++) {
511     reqs[i] = smpi_request_f2c(requests[i]);
512   }
513   *ierr = MPI_Waitall(*count, reqs, FORT_STATUSES_IGNORE(status));
514   for(i = 0; i < *count; i++) {
515       if(reqs[i]==MPI_REQUEST_NULL){
516           free_request(requests[i]);
517           requests[i]=MPI_FORTRAN_REQUEST_NULL;
518       }
519   }
520
521   free(reqs);
522 }
523
524 void mpi_barrier_(int* comm, int* ierr) {
525   *ierr = MPI_Barrier(smpi_comm_f2c(*comm));
526 }
527
528 void mpi_bcast_(void *buf, int* count, int* datatype, int* root, int* comm, int* ierr) {
529   *ierr = MPI_Bcast(buf, *count, smpi_type_f2c(*datatype), *root, smpi_comm_f2c(*comm));
530 }
531
532 void mpi_reduce_(void* sendbuf, void* recvbuf, int* count,
533                   int* datatype, int* op, int* root, int* comm, int* ierr) {
534   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
535   sendbuf = (char *) FORT_BOTTOM(sendbuf);
536   recvbuf = (char *) FORT_BOTTOM(recvbuf);
537   *ierr = MPI_Reduce(sendbuf, recvbuf, *count,
538                      smpi_type_f2c(*datatype), smpi_op_f2c(*op), *root, smpi_comm_f2c(*comm));
539 }
540
541 void mpi_allreduce_(void* sendbuf, void* recvbuf, int* count, int* datatype,
542                      int* op, int* comm, int* ierr) {
543   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
544   *ierr = MPI_Allreduce(sendbuf, recvbuf, *count, smpi_type_f2c(*datatype),
545                         smpi_op_f2c(*op), smpi_comm_f2c(*comm));
546 }
547
548 void mpi_reduce_scatter_(void* sendbuf, void* recvbuf, int* recvcounts, int* datatype,
549                      int* op, int* comm, int* ierr) {
550   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
551   *ierr = MPI_Reduce_scatter(sendbuf, recvbuf, recvcounts, smpi_type_f2c(*datatype),
552                         smpi_op_f2c(*op), smpi_comm_f2c(*comm));
553 }
554
555 void mpi_scatter_(void* sendbuf, int* sendcount, int* sendtype,
556                    void* recvbuf, int* recvcount, int* recvtype, 
557                    int* root, int* comm, int* ierr) {
558   recvbuf = (char *) FORT_IN_PLACE(recvbuf);
559   *ierr = MPI_Scatter(sendbuf, *sendcount, smpi_type_f2c(*sendtype),
560                       recvbuf, *recvcount, smpi_type_f2c(*recvtype), *root, smpi_comm_f2c(*comm));
561 }
562
563
564 void mpi_scatterv_(void* sendbuf, int* sendcounts, int* displs, int* sendtype,
565                    void* recvbuf, int* recvcount, int* recvtype,
566                    int* root, int* comm, int* ierr) {
567   recvbuf = (char *) FORT_IN_PLACE(recvbuf);
568   *ierr = MPI_Scatterv(sendbuf, sendcounts, displs, smpi_type_f2c(*sendtype),
569                       recvbuf, *recvcount, smpi_type_f2c(*recvtype), *root, smpi_comm_f2c(*comm));
570 }
571
572 void mpi_gather_(void* sendbuf, int* sendcount, int* sendtype,
573                   void* recvbuf, int* recvcount, int* recvtype,
574                   int* root, int* comm, int* ierr) {
575   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
576   sendbuf = (char *) FORT_BOTTOM(sendbuf);
577   recvbuf = (char *) FORT_BOTTOM(recvbuf);
578   *ierr = MPI_Gather(sendbuf, *sendcount, smpi_type_f2c(*sendtype),
579                      recvbuf, *recvcount, smpi_type_f2c(*recvtype), *root, smpi_comm_f2c(*comm));
580 }
581
582 void mpi_gatherv_(void* sendbuf, int* sendcount, int* sendtype,
583                   void* recvbuf, int* recvcounts, int* displs, int* recvtype,
584                   int* root, int* comm, int* ierr) {
585   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
586   sendbuf = (char *) FORT_BOTTOM(sendbuf);
587   recvbuf = (char *) FORT_BOTTOM(recvbuf);
588   *ierr = MPI_Gatherv(sendbuf, *sendcount, smpi_type_f2c(*sendtype),
589                      recvbuf, recvcounts, displs, smpi_type_f2c(*recvtype), *root, smpi_comm_f2c(*comm));
590 }
591
592 void mpi_allgather_(void* sendbuf, int* sendcount, int* sendtype,
593                      void* recvbuf, int* recvcount, int* recvtype,
594                      int* comm, int* ierr) {
595   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
596   *ierr = MPI_Allgather(sendbuf, *sendcount, smpi_type_f2c(*sendtype),
597                         recvbuf, *recvcount, smpi_type_f2c(*recvtype), smpi_comm_f2c(*comm));
598 }
599
600 void mpi_allgatherv_(void* sendbuf, int* sendcount, int* sendtype,
601                      void* recvbuf, int* recvcounts,int* displs, int* recvtype,
602                      int* comm, int* ierr) {
603   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
604   *ierr = MPI_Allgatherv(sendbuf, *sendcount, smpi_type_f2c(*sendtype),
605                         recvbuf, recvcounts, displs, smpi_type_f2c(*recvtype), smpi_comm_f2c(*comm));
606 }
607
608 void mpi_scan_(void* sendbuf, void* recvbuf, int* count, int* datatype,
609                 int* op, int* comm, int* ierr) {
610   *ierr = MPI_Scan(sendbuf, recvbuf, *count, smpi_type_f2c(*datatype),
611                    smpi_op_f2c(*op), smpi_comm_f2c(*comm));
612 }
613
614 void mpi_alltoall_(void* sendbuf, int* sendcount, int* sendtype,
615                     void* recvbuf, int* recvcount, int* recvtype, int* comm, int* ierr) {
616   *ierr = MPI_Alltoall(sendbuf, *sendcount, smpi_type_f2c(*sendtype),
617                        recvbuf, *recvcount, smpi_type_f2c(*recvtype), smpi_comm_f2c(*comm));
618 }
619
620 void mpi_alltoallv_(void* sendbuf, int* sendcounts, int* senddisps, int* sendtype,
621                     void* recvbuf, int* recvcounts, int* recvdisps, int* recvtype, int* comm, int* ierr) {
622   *ierr = MPI_Alltoallv(sendbuf, sendcounts, senddisps, smpi_type_f2c(*sendtype),
623                        recvbuf, recvcounts, recvdisps, smpi_type_f2c(*recvtype), smpi_comm_f2c(*comm));
624 }
625
626 void mpi_test_ (int * request, int *flag, MPI_Status * status, int* ierr){
627   MPI_Request req = smpi_request_f2c(*request);
628   *ierr= MPI_Test(&req, flag, FORT_STATUS_IGNORE(status));
629   if(req==MPI_REQUEST_NULL){
630       free_request(*request);
631       *request=MPI_FORTRAN_REQUEST_NULL;
632   }
633 }
634
635
636 void mpi_testall_ (int* count, int * requests,  int *flag, MPI_Status * statuses, int* ierr){
637   MPI_Request* reqs;
638   int i;
639   reqs = xbt_new(MPI_Request, *count);
640   for(i = 0; i < *count; i++) {
641     reqs[i] = smpi_request_f2c(requests[i]);
642   }
643   *ierr= MPI_Testall(*count, reqs, flag, FORT_STATUSES_IGNORE(statuses));
644   for(i = 0; i < *count; i++) {
645     if(reqs[i]==MPI_REQUEST_NULL){
646         free_request(requests[i]);
647         requests[i]=MPI_FORTRAN_REQUEST_NULL;
648     }
649   }
650 }
651
652
653 void mpi_get_processor_name_(char *name, int *resultlen, int* ierr){
654   *ierr = MPI_Get_processor_name(name, resultlen);
655 }
656
657 void mpi_get_count_(MPI_Status * status, int* datatype, int *count, int* ierr){
658   *ierr = MPI_Get_count(FORT_STATUS_IGNORE(status), smpi_type_f2c(*datatype), count);
659 }
660
661 void mpi_attr_get_(int* comm, int* keyval, void* attr_value, int* flag, int* ierr ){
662   *ierr = MPI_Attr_get(smpi_comm_f2c(*comm), *keyval, attr_value, flag);
663 }
664
665 void mpi_type_extent_(int* datatype, MPI_Aint * extent, int* ierr){
666   *ierr= MPI_Type_extent(smpi_type_f2c(*datatype),  extent);
667 }
668
669 void mpi_type_commit_(int* datatype,  int* ierr){
670   MPI_Datatype tmp= smpi_type_f2c(*datatype);
671   *ierr= MPI_Type_commit(&tmp);
672 }
673
674 void mpi_type_vector_(int* count, int* blocklen, int* stride, int* old_type, int* newtype,  int* ierr){
675   MPI_Datatype tmp;
676   *ierr= MPI_Type_vector(*count, *blocklen, *stride, smpi_type_f2c(*old_type), &tmp);
677   if(*ierr == MPI_SUCCESS) {
678     *newtype = smpi_type_c2f(tmp);
679   }
680 }
681
682 void mpi_type_create_vector_(int* count, int* blocklen, int* stride, int* old_type, int* newtype,  int* ierr){
683   MPI_Datatype tmp;
684   *ierr= MPI_Type_vector(*count, *blocklen, *stride, smpi_type_f2c(*old_type), &tmp);
685   if(*ierr == MPI_SUCCESS) {
686     *newtype = smpi_type_c2f(tmp);
687   }
688 }
689
690 void mpi_type_hvector_(int* count, int* blocklen, MPI_Aint* stride, int* old_type, int* newtype,  int* ierr){
691   MPI_Datatype tmp;
692   *ierr= MPI_Type_hvector (*count, *blocklen, *stride, smpi_type_f2c(*old_type), &tmp);
693   if(*ierr == MPI_SUCCESS) {
694     *newtype = smpi_type_c2f(tmp);
695   }
696 }
697
698 void mpi_type_create_hvector_(int* count, int* blocklen, MPI_Aint* stride, int* old_type, int* newtype,  int* ierr){
699   MPI_Datatype tmp;
700   *ierr= MPI_Type_hvector(*count, *blocklen, *stride, smpi_type_f2c(*old_type), &tmp);
701   if(*ierr == MPI_SUCCESS) {
702     *newtype = smpi_type_c2f(tmp);
703   }
704 }
705
706 void mpi_type_free_(int* datatype, int* ierr){
707   MPI_Datatype tmp= smpi_type_f2c(*datatype);
708   *ierr= MPI_Type_free (&tmp);
709   if(*ierr == MPI_SUCCESS) {
710     free_datatype(*datatype);
711   }
712 }
713
714 void mpi_type_ub_(int* datatype, MPI_Aint * disp, int* ierr){
715   *ierr= MPI_Type_ub(smpi_type_f2c(*datatype), disp);
716 }
717
718 void mpi_type_lb_(int* datatype, MPI_Aint * extent, int* ierr){
719   *ierr= MPI_Type_extent(smpi_type_f2c(*datatype), extent);
720 }
721
722 void mpi_type_size_(int* datatype, int *size, int* ierr)
723 {
724   *ierr = MPI_Type_size(smpi_type_f2c(*datatype), size);
725 }
726
727 void mpi_error_string_(int* errorcode, char* string, int* resultlen, int* ierr){
728   *ierr = MPI_Error_string(*errorcode, string, resultlen);
729 }
730
731 void mpi_win_fence_( int* assert,  int* win, int* ierr){
732   *ierr =  MPI_Win_fence(* assert, smpi_win_f2c(*win));
733 }
734
735 void mpi_win_free_( int* win, int* ierr){
736   MPI_Win tmp = smpi_win_f2c(*win);
737   *ierr =  MPI_Win_free(&tmp);
738   if(*ierr == MPI_SUCCESS) {
739     free_win(*win);
740   }
741 }
742
743 void mpi_win_create_( int *base, MPI_Aint* size, int* disp_unit, int* info, int* comm, int *win, int* ierr){
744   MPI_Win tmp;
745   *ierr =  MPI_Win_create( (void*)base, *size, *disp_unit, smpi_info_f2c(*info), smpi_comm_f2c(*comm),&tmp);
746  if(*ierr == MPI_SUCCESS) {
747    *win = smpi_win_c2f(tmp);
748  }
749 }
750
751 void mpi_win_post_(int* group, int assert, int* win, int* ierr){
752   *ierr =  MPI_Win_post(smpi_group_f2c(*group), assert, smpi_win_f2c(*win));
753 }
754
755 void mpi_win_start_(int* group, int assert, int* win, int* ierr){
756   *ierr =  MPI_Win_start(smpi_group_f2c(*group), assert, smpi_win_f2c(*win));
757 }
758
759 void mpi_win_complete_(int* win, int* ierr){
760   *ierr =  MPI_Win_complete(smpi_win_f2c(*win));
761 }
762
763 void mpi_win_wait_(int* win, int* ierr){
764   *ierr =  MPI_Win_wait(smpi_win_f2c(*win));
765 }
766
767 void mpi_win_set_name_ (int*  win, char * name, int* ierr, int size){
768  //handle trailing blanks
769  while(name[size-1]==' ')size--;
770  while(*name==' '){//handle leading blanks
771    size --;
772    name++;
773  }
774  char* tname = xbt_malloc((size+1)*sizeof(char));
775  strncpy(tname, name, size);
776  tname[size]='\0';
777  *ierr = MPI_Win_set_name(smpi_win_f2c(*win), tname);
778  xbt_free(tname);
779 }
780
781 void mpi_win_get_name_ (int*  win, char * name, int* len, int* ierr){
782  *ierr = MPI_Win_get_name(smpi_win_f2c(*win),name,len);
783  if(*len>0) name[*len]=' ';//blank padding, not \0
784 }
785
786 void mpi_info_create_( int *info, int* ierr){
787   MPI_Info tmp;
788   *ierr =  MPI_Info_create(&tmp);
789   if(*ierr == MPI_SUCCESS) {
790     *info = smpi_info_c2f(tmp);
791   }
792 }
793
794 void mpi_info_set_( int *info, char *key, char *value, int* ierr, unsigned int keylen, unsigned int valuelen){
795  //handle trailing blanks
796  while(key[keylen-1]==' ')keylen--;
797  while(*key==' '){//handle leading blanks
798    keylen --;
799    key++;
800  }
801  char* tkey = xbt_malloc((keylen+1)*sizeof(char));
802  strncpy(tkey, key, keylen);
803  tkey[keylen]='\0';  
804  
805  while(value[valuelen-1]==' ')valuelen--;
806  while(*value==' '){//handle leading blanks
807    valuelen --;
808    value++;
809  }
810  char* tvalue = xbt_malloc((valuelen+1)*sizeof(char));
811  strncpy(tvalue, value, valuelen);
812  
813  tvalue[valuelen]='\0'; 
814  *ierr =  MPI_Info_set( smpi_info_f2c(*info), tkey, tvalue);
815  xbt_free(tkey);
816 }
817
818 void mpi_info_get_ (int* info,char *key,int* valuelen, char *value, int *flag, int* ierr, unsigned int keylen ){
819  while(key[keylen-1]==' ')keylen--;
820  while(*key==' '){//handle leading blanks
821    keylen --;
822    key++;
823  }  char* tkey = xbt_malloc((keylen+1)*sizeof(char));
824  strncpy(tkey, key, keylen);
825  tkey[keylen]='\0';
826  *ierr = MPI_Info_get(smpi_info_f2c(*info),tkey,*valuelen, value, flag);
827  xbt_free(tkey);
828  int i = 0;
829  for (i=strlen(value); i<*valuelen; i++)
830  value[i]=' ';
831 }
832
833 void mpi_info_free_(int* info, int* ierr){
834   MPI_Info tmp = smpi_info_f2c(*info);
835   *ierr =  MPI_Info_free(&tmp);
836   if(*ierr == MPI_SUCCESS) {
837     free_info(*info);
838   }
839 }
840
841 void mpi_get_( int *origin_addr, int* origin_count, int* origin_datatype, int *target_rank,
842     MPI_Aint* target_disp, int *target_count, int* tarsmpi_type_f2c, int* win, int* ierr){
843   *ierr =  MPI_Get( (void*)origin_addr,*origin_count, smpi_type_f2c(*origin_datatype),*target_rank,
844       *target_disp, *target_count,smpi_type_f2c(*tarsmpi_type_f2c), smpi_win_f2c(*win));
845 }
846
847 void mpi_accumulate_( int *origin_addr, int* origin_count, int* origin_datatype, int *target_rank,
848     MPI_Aint* target_disp, int *target_count, int* tarsmpi_type_f2c, int* op, int* win, int* ierr){
849   *ierr =  MPI_Accumulate( (void*)origin_addr,*origin_count, smpi_type_f2c(*origin_datatype),*target_rank,
850       *target_disp, *target_count,smpi_type_f2c(*tarsmpi_type_f2c), smpi_op_f2c(*op), smpi_win_f2c(*win));
851 }
852
853 void mpi_put_( int *origin_addr, int* origin_count, int* origin_datatype, int *target_rank,
854     MPI_Aint* target_disp, int *target_count, int* tarsmpi_type_f2c, int* win, int* ierr){
855   *ierr =  MPI_Put( (void*)origin_addr,*origin_count, smpi_type_f2c(*origin_datatype),*target_rank,
856       *target_disp, *target_count,smpi_type_f2c(*tarsmpi_type_f2c), smpi_win_f2c(*win));
857 }
858
859
860 //following are automatically generated, and have to be checked
861 void mpi_finalized_ (int * flag, int* ierr){
862
863  *ierr = MPI_Finalized(flag);
864 }
865
866 void mpi_init_thread_ (int* required, int *provided, int* ierr){
867   smpi_init_fortran_types();
868   *ierr = MPI_Init_thread(NULL, NULL,*required, provided);
869   running_processes++;
870 }
871
872 void mpi_query_thread_ (int *provided, int* ierr){
873
874  *ierr = MPI_Query_thread(provided);
875 }
876
877 void mpi_is_thread_main_ (int *flag, int* ierr){
878
879  *ierr = MPI_Is_thread_main(flag);
880 }
881
882 void mpi_address_ (void *location, MPI_Aint * address, int* ierr){
883
884  *ierr = MPI_Address(location, address);
885 }
886
887 void mpi_get_address_ (void *location, MPI_Aint * address, int* ierr){
888
889  *ierr = MPI_Get_address(location, address);
890 }
891
892 void mpi_type_dup_ (int*  datatype, int* newdatatype, int* ierr){
893  MPI_Datatype tmp;
894  *ierr = MPI_Type_dup(smpi_type_f2c(*datatype), &tmp);
895  if(*ierr == MPI_SUCCESS) {
896    *newdatatype = smpi_type_c2f(tmp);
897  }
898 }
899
900 void mpi_type_set_name_ (int*  datatype, char * name, int* ierr, int size){
901  char* tname = xbt_malloc((size+1)*sizeof(char));
902  strncpy(tname, name, size);
903  tname[size]='\0';
904  *ierr = MPI_Type_set_name(smpi_type_f2c(*datatype), tname);
905  xbt_free(tname);
906 }
907
908 void mpi_type_get_name_ (int*  datatype, char * name, int* len, int* ierr){
909  *ierr = MPI_Type_get_name(smpi_type_f2c(*datatype),name,len);
910   if(*len>0) name[*len]=' ';
911 }
912
913 void mpi_type_get_attr_ (int* type, int* type_keyval, void *attribute_val, int* flag, int* ierr){
914
915  *ierr = MPI_Type_get_attr ( smpi_type_f2c(*type), *type_keyval, attribute_val,flag);
916 }
917
918 void mpi_type_set_attr_ (int* type, int* type_keyval, void *attribute_val, int* ierr){
919
920  *ierr = MPI_Type_set_attr ( smpi_type_f2c(*type), *type_keyval, attribute_val);
921 }
922
923 void mpi_type_delete_attr_ (int* type, int* type_keyval, int* ierr){
924
925  *ierr = MPI_Type_delete_attr ( smpi_type_f2c(*type),  *type_keyval);
926 }
927
928 void mpi_type_create_keyval_ (void* copy_fn, void*  delete_fn, int* keyval, void* extra_state, int* ierr){
929
930  *ierr = MPI_Type_create_keyval((MPI_Type_copy_attr_function*)copy_fn, (MPI_Type_delete_attr_function*) delete_fn,  keyval,  extra_state) ;
931 }
932
933 void mpi_type_free_keyval_ (int* keyval, int* ierr) {
934  *ierr = MPI_Type_free_keyval( keyval);
935 }
936
937 void mpi_pcontrol_ (int* level , int* ierr){
938  *ierr = MPI_Pcontrol(*(const int*)level);
939 }
940
941 void mpi_type_get_extent_ (int* datatype, MPI_Aint * lb, MPI_Aint * extent, int* ierr){
942
943  *ierr = MPI_Type_get_extent(smpi_type_f2c(*datatype), lb, extent);
944 }
945
946 void mpi_type_get_true_extent_ (int* datatype, MPI_Aint * lb, MPI_Aint * extent, int* ierr){
947
948  *ierr = MPI_Type_get_true_extent(smpi_type_f2c(*datatype), lb, extent);
949 }
950
951 void mpi_op_create_ (void * function, int* commute, int* op, int* ierr){
952   MPI_Op tmp;
953  *ierr = MPI_Op_create((MPI_User_function*)function,* commute, &tmp);
954  if(*ierr == MPI_SUCCESS) {
955    *op = smpi_op_c2f(tmp);
956  }
957 }
958
959 void mpi_op_free_ (int* op, int* ierr){
960   MPI_Op tmp=smpi_op_f2c(*op);
961   *ierr = MPI_Op_free(& tmp);
962   if(*ierr == MPI_SUCCESS) {
963     free_op(*op);
964   }
965 }
966
967 void mpi_group_free_ (int* group, int* ierr){
968  MPI_Group tmp=smpi_group_f2c(*group);
969  *ierr = MPI_Group_free(&tmp);
970  if(*ierr == MPI_SUCCESS) {
971    free_group(*group);
972  }
973 }
974
975 void mpi_group_size_ (int* group, int *size, int* ierr){
976
977  *ierr = MPI_Group_size(smpi_group_f2c(*group), size);
978 }
979
980 void mpi_group_rank_ (int* group, int *rank, int* ierr){
981
982  *ierr = MPI_Group_rank(smpi_group_f2c(*group), rank);
983 }
984
985 void mpi_group_translate_ranks_ (int* group1, int* n, int *ranks1, int* group2, int *ranks2, int* ierr)
986 {
987
988  *ierr = MPI_Group_translate_ranks(smpi_group_f2c(*group1), *n, ranks1, smpi_group_f2c(*group2), ranks2);
989 }
990
991 void mpi_group_compare_ (int* group1, int* group2, int *result, int* ierr){
992
993  *ierr = MPI_Group_compare(smpi_group_f2c(*group1), smpi_group_f2c(*group2), result);
994 }
995
996 void mpi_group_union_ (int* group1, int* group2, int* newgroup, int* ierr){
997  MPI_Group tmp;
998  *ierr = MPI_Group_union(smpi_group_f2c(*group1), smpi_group_f2c(*group2), &tmp);
999  if(*ierr == MPI_SUCCESS) {
1000    *newgroup = smpi_group_c2f(tmp);
1001  }
1002 }
1003
1004 void mpi_group_intersection_ (int* group1, int* group2, int* newgroup, int* ierr){
1005  MPI_Group tmp;
1006  *ierr = MPI_Group_intersection(smpi_group_f2c(*group1), smpi_group_f2c(*group2), &tmp);
1007  if(*ierr == MPI_SUCCESS) {
1008    *newgroup = smpi_group_c2f(tmp);
1009  }
1010 }
1011
1012 void mpi_group_difference_ (int* group1, int* group2, int* newgroup, int* ierr){
1013  MPI_Group tmp;
1014  *ierr = MPI_Group_difference(smpi_group_f2c(*group1), smpi_group_f2c(*group2), &tmp);
1015  if(*ierr == MPI_SUCCESS) {
1016    *newgroup = smpi_group_c2f(tmp);
1017  }
1018 }
1019
1020 void mpi_group_excl_ (int* group, int* n, int *ranks, int* newgroup, int* ierr){
1021   MPI_Group tmp;
1022  *ierr = MPI_Group_excl(smpi_group_f2c(*group), *n, ranks, &tmp);
1023  if(*ierr == MPI_SUCCESS) {
1024    *newgroup = smpi_group_c2f(tmp);
1025  }
1026 }
1027
1028 void mpi_group_range_incl_ (int* group, int* n, int ranges[][3], int* newgroup, int* ierr)
1029 {
1030   MPI_Group tmp;
1031  *ierr = MPI_Group_range_incl(smpi_group_f2c(*group), *n, ranges, &tmp);
1032  if(*ierr == MPI_SUCCESS) {
1033    *newgroup = smpi_group_c2f(tmp);
1034  }
1035 }
1036
1037 void mpi_group_range_excl_ (int* group, int* n, int ranges[][3], int* newgroup, int* ierr)
1038 {
1039  MPI_Group tmp;
1040  *ierr = MPI_Group_range_excl(smpi_group_f2c(*group), *n, ranges, &tmp);
1041  if(*ierr == MPI_SUCCESS) {
1042    *newgroup = smpi_group_c2f(tmp);
1043  }
1044 }
1045
1046 void mpi_comm_get_attr_ (int* comm, int* comm_keyval, void *attribute_val, int *flag, int* ierr){
1047
1048  *ierr = MPI_Comm_get_attr (smpi_comm_f2c(*comm), *comm_keyval, attribute_val, flag);
1049 }
1050
1051 void mpi_comm_set_attr_ (int* comm, int* comm_keyval, void *attribute_val, int* ierr){
1052
1053  *ierr = MPI_Comm_set_attr ( smpi_comm_f2c(*comm), *comm_keyval, attribute_val);
1054 }
1055
1056 void mpi_comm_delete_attr_ (int* comm, int* comm_keyval, int* ierr){
1057
1058  *ierr = MPI_Comm_delete_attr (smpi_comm_f2c(*comm),  *comm_keyval);
1059 }
1060
1061 void mpi_comm_create_keyval_ (void* copy_fn, void* delete_fn, int* keyval, void* extra_state, int* ierr){
1062
1063  *ierr = MPI_Comm_create_keyval((MPI_Comm_copy_attr_function*)copy_fn,  (MPI_Comm_delete_attr_function*)delete_fn,  keyval,  extra_state) ;
1064 }
1065
1066 void mpi_comm_free_keyval_ (int* keyval, int* ierr) {
1067  *ierr = MPI_Comm_free_keyval( keyval);
1068 }
1069
1070 void mpi_comm_get_name_ (int* comm, char* name, int* len, int* ierr){
1071  *ierr = MPI_Comm_get_name(smpi_comm_f2c(*comm), name, len);
1072   if(*len>0) name[*len]=' ';
1073 }
1074
1075 void mpi_comm_compare_ (int* comm1, int* comm2, int *result, int* ierr){
1076
1077  *ierr = MPI_Comm_compare(smpi_comm_f2c(*comm1), smpi_comm_f2c(*comm2), result);
1078 }
1079
1080 void mpi_comm_disconnect_ (int* comm, int* ierr){
1081  MPI_Comm tmp=smpi_comm_f2c(*comm);
1082  *ierr = MPI_Comm_disconnect(&tmp);
1083  if(*ierr == MPI_SUCCESS) {
1084    free_comm(*comm);
1085  }
1086 }
1087
1088 void mpi_request_free_ (int* request, int* ierr){
1089   MPI_Request tmp=smpi_request_f2c(*request);
1090  *ierr = MPI_Request_free(&tmp);
1091  if(*ierr == MPI_SUCCESS) {
1092    free_request(*request);
1093  }
1094 }
1095
1096 void mpi_sendrecv_replace_ (void *buf, int* count, int* datatype, int* dst, int* sendtag, int* src, int* recvtag,
1097  int* comm, MPI_Status* status, int* ierr)
1098 {
1099
1100  *ierr = MPI_Sendrecv_replace(buf, *count, smpi_type_f2c(*datatype), *dst, *sendtag, *src,
1101  *recvtag, smpi_comm_f2c(*comm), FORT_STATUS_IGNORE(status));
1102 }
1103
1104 void mpi_testany_ (int* count, int* requests, int *index, int *flag, MPI_Status* status, int* ierr)
1105 {
1106   MPI_Request* reqs;
1107   int i;
1108
1109   reqs = xbt_new(MPI_Request, *count);
1110   for(i = 0; i < *count; i++) {
1111     reqs[i] = smpi_request_f2c(requests[i]);
1112   }
1113   *ierr = MPI_Testany(*count, reqs, index, flag, FORT_STATUS_IGNORE(status));
1114   if(*index!=MPI_UNDEFINED)
1115   if(reqs[*index]==MPI_REQUEST_NULL){
1116     free_request(requests[*index]);
1117     requests[*index]=MPI_FORTRAN_REQUEST_NULL;
1118   }
1119   free(reqs);
1120 }
1121
1122 void mpi_waitsome_ (int* incount, int* requests, int *outcount, int *indices, MPI_Status* status, int* ierr)
1123 {
1124   MPI_Request* reqs;
1125   int i;
1126
1127   reqs = xbt_new(MPI_Request, *incount);
1128   for(i = 0; i < *incount; i++) {
1129     reqs[i] = smpi_request_f2c(requests[i]);
1130   }
1131   *ierr = MPI_Waitsome(*incount, reqs, outcount, indices, status);
1132   for(i=0;i<*outcount;i++){
1133     if(reqs[indices[i]]==MPI_REQUEST_NULL){
1134         free_request(requests[indices[i]]);
1135         requests[indices[i]]=MPI_FORTRAN_REQUEST_NULL;
1136     }
1137   }
1138   free(reqs);
1139 }
1140
1141 void mpi_reduce_local_ (void *inbuf, void *inoutbuf, int* count, int* datatype, int* op, int* ierr){
1142
1143  *ierr = MPI_Reduce_local(inbuf, inoutbuf, *count, smpi_type_f2c(*datatype), smpi_op_f2c(*op));
1144 }
1145
1146 void mpi_reduce_scatter_block_ (void *sendbuf, void *recvbuf, int* recvcount, int* datatype, int* op, int* comm, int* ierr)
1147 {
1148   sendbuf = (char *) FORT_IN_PLACE(sendbuf);
1149  *ierr = MPI_Reduce_scatter_block(sendbuf, recvbuf, *recvcount, smpi_type_f2c(*datatype), smpi_op_f2c(*op), smpi_comm_f2c(*comm));
1150 }
1151
1152 void mpi_pack_size_ (int* incount, int* datatype, int* comm, int* size, int* ierr) {
1153  *ierr = MPI_Pack_size(*incount, smpi_type_f2c(*datatype), smpi_comm_f2c(*comm), size);
1154 }
1155
1156 void mpi_cart_coords_ (int* comm, int* rank, int* maxdims, int* coords, int* ierr) {
1157  *ierr = MPI_Cart_coords(smpi_comm_f2c(*comm), *rank, *maxdims, coords);
1158 }
1159
1160 void mpi_cart_create_ (int* comm_old, int* ndims, int* dims, int* periods, int* reorder, int*  comm_cart, int* ierr) {
1161   MPI_Comm tmp;
1162  *ierr = MPI_Cart_create(smpi_comm_f2c(*comm_old), *ndims, dims, periods, *reorder, &tmp);
1163  if(*ierr == MPI_SUCCESS) {
1164    *comm_cart = smpi_comm_c2f(tmp);
1165  }
1166 }
1167
1168 void mpi_cart_get_ (int* comm, int* maxdims, int* dims, int* periods, int* coords, int* ierr) {
1169  *ierr = MPI_Cart_get(smpi_comm_f2c(*comm), *maxdims, dims, periods, coords);
1170 }
1171
1172 void mpi_cart_map_ (int* comm_old, int* ndims, int* dims, int* periods, int* newrank, int* ierr) {
1173  *ierr = MPI_Cart_map(smpi_comm_f2c(*comm_old), *ndims, dims, periods, newrank);
1174 }
1175
1176 void mpi_cart_rank_ (int* comm, int* coords, int* rank, int* ierr) {
1177  *ierr = MPI_Cart_rank(smpi_comm_f2c(*comm), coords, rank);
1178 }
1179
1180 void mpi_cart_shift_ (int* comm, int* direction, int* displ, int* source, int* dest, int* ierr) {
1181  *ierr = MPI_Cart_shift(smpi_comm_f2c(*comm), *direction, *displ, source, dest);
1182 }
1183
1184 void mpi_cart_sub_ (int* comm, int* remain_dims, int*  comm_new, int* ierr) {
1185  MPI_Comm tmp;
1186  *ierr = MPI_Cart_sub(smpi_comm_f2c(*comm), remain_dims, &tmp);
1187  if(*ierr == MPI_SUCCESS) {
1188    *comm_new = smpi_comm_c2f(tmp);
1189  }
1190 }
1191
1192 void mpi_cartdim_get_ (int* comm, int* ndims, int* ierr) {
1193  *ierr = MPI_Cartdim_get(smpi_comm_f2c(*comm), ndims);
1194 }
1195
1196 void mpi_graph_create_ (int* comm_old, int* nnodes, int* index, int* edges, int* reorder, int*  comm_graph, int* ierr) {
1197   MPI_Comm tmp;
1198  *ierr = MPI_Graph_create(smpi_comm_f2c(*comm_old), *nnodes, index, edges, *reorder, &tmp);
1199  if(*ierr == MPI_SUCCESS) {
1200    *comm_graph = smpi_comm_c2f(tmp);
1201  }
1202 }
1203
1204 void mpi_graph_get_ (int* comm, int* maxindex, int* maxedges, int* index, int* edges, int* ierr) {
1205  *ierr = MPI_Graph_get(smpi_comm_f2c(*comm), *maxindex, *maxedges, index, edges);
1206 }
1207
1208 void mpi_graph_map_ (int* comm_old, int* nnodes, int* index, int* edges, int* newrank, int* ierr) {
1209  *ierr = MPI_Graph_map(smpi_comm_f2c(*comm_old), *nnodes, index, edges, newrank);
1210 }
1211
1212 void mpi_graph_neighbors_ (int* comm, int* rank, int* maxneighbors, int* neighbors, int* ierr) {
1213  *ierr = MPI_Graph_neighbors(smpi_comm_f2c(*comm), *rank, *maxneighbors, neighbors);
1214 }
1215
1216 void mpi_graph_neighbors_count_ (int* comm, int* rank, int* nneighbors, int* ierr) {
1217  *ierr = MPI_Graph_neighbors_count(smpi_comm_f2c(*comm), *rank, nneighbors);
1218 }
1219
1220 void mpi_graphdims_get_ (int* comm, int* nnodes, int* nedges, int* ierr) {
1221  *ierr = MPI_Graphdims_get(smpi_comm_f2c(*comm), nnodes, nedges);
1222 }
1223
1224 void mpi_topo_test_ (int* comm, int* top_type, int* ierr) {
1225  *ierr = MPI_Topo_test(smpi_comm_f2c(*comm), top_type);
1226 }
1227
1228 void mpi_error_class_ (int* errorcode, int* errorclass, int* ierr) {
1229  *ierr = MPI_Error_class(*errorcode, errorclass);
1230 }
1231
1232 void mpi_errhandler_create_ (void* function, void* errhandler, int* ierr) {
1233  *ierr = MPI_Errhandler_create((MPI_Handler_function*)function, (MPI_Errhandler*)errhandler);
1234 }
1235
1236 void mpi_errhandler_free_ (void* errhandler, int* ierr) {
1237  *ierr = MPI_Errhandler_free((MPI_Errhandler*)errhandler);
1238 }
1239
1240 void mpi_errhandler_get_ (int* comm, void* errhandler, int* ierr) {
1241  *ierr = MPI_Errhandler_get(smpi_comm_f2c(*comm), (MPI_Errhandler*) errhandler);
1242 }
1243
1244 void mpi_errhandler_set_ (int* comm, void* errhandler, int* ierr) {
1245  *ierr = MPI_Errhandler_set(smpi_comm_f2c(*comm), *(MPI_Errhandler*)errhandler);
1246 }
1247
1248 void mpi_comm_set_errhandler_ (int* comm, void* errhandler, int* ierr) {
1249  *ierr = MPI_Errhandler_set(smpi_comm_f2c(*comm), *(MPI_Errhandler*)errhandler);
1250 }
1251
1252 void mpi_comm_get_errhandler_ (int* comm, void* errhandler, int* ierr) {
1253  *ierr = MPI_Errhandler_set(smpi_comm_f2c(*comm), (MPI_Errhandler*)errhandler);
1254 }
1255
1256 void mpi_type_contiguous_ (int* count, int* old_type, int*  newtype, int* ierr) {
1257   MPI_Datatype tmp;
1258   *ierr = MPI_Type_contiguous(*count, smpi_type_f2c(*old_type), &tmp);
1259   if(*ierr == MPI_SUCCESS) {
1260     *newtype = smpi_type_c2f(tmp);
1261   }
1262 }
1263
1264 void mpi_cancel_ (int* request, int* ierr) {
1265   MPI_Request tmp=smpi_request_f2c(*request);
1266  *ierr = MPI_Cancel(&tmp);
1267 }
1268
1269 void mpi_buffer_attach_ (void* buffer, int* size, int* ierr) {
1270  *ierr = MPI_Buffer_attach(buffer, *size);
1271 }
1272
1273 void mpi_buffer_detach_ (void* buffer, int* size, int* ierr) {
1274  *ierr = MPI_Buffer_detach(buffer, size);
1275 }
1276
1277 void mpi_testsome_ (int* incount, int*  requests, int* outcount, int* indices, MPI_Status*  statuses, int* ierr) {
1278   MPI_Request* reqs;
1279   int i;
1280
1281   reqs = xbt_new(MPI_Request, *incount);
1282   for(i = 0; i < *incount; i++) {
1283     reqs[i] = smpi_request_f2c(requests[i]);
1284     indices[i]=0;
1285   }
1286   *ierr = MPI_Testsome(*incount, reqs, outcount, indices, FORT_STATUSES_IGNORE(statuses));
1287   for(i=0;i<*incount;i++){
1288     if(indices[i]){
1289       if(reqs[indices[i]]==MPI_REQUEST_NULL){
1290           free_request(requests[indices[i]]);
1291           requests[indices[i]]=MPI_FORTRAN_REQUEST_NULL;
1292       }
1293     }
1294   }
1295   free(reqs);
1296 }
1297
1298 void mpi_comm_test_inter_ (int* comm, int* flag, int* ierr) {
1299  *ierr = MPI_Comm_test_inter(smpi_comm_f2c(*comm), flag);
1300 }
1301
1302 void mpi_unpack_ (void* inbuf, int* insize, int* position, void* outbuf, int* outcount, int* type, int* comm, int* ierr) {
1303  *ierr = MPI_Unpack(inbuf, *insize, position, outbuf, *outcount, smpi_type_f2c(*type), smpi_comm_f2c(*comm));
1304 }
1305
1306 void mpi_pack_external_size_ (char *datarep, int* incount, int* datatype, MPI_Aint *size, int* ierr){
1307  *ierr = MPI_Pack_external_size(datarep, *incount, smpi_type_f2c(*datatype), size);
1308 }
1309
1310 void mpi_pack_external_ (char *datarep, void *inbuf, int* incount, int* datatype, void *outbuf, MPI_Aint* outcount, MPI_Aint *position, int* ierr){
1311  *ierr = MPI_Pack_external(datarep, inbuf, *incount, smpi_type_f2c(*datatype), outbuf, *outcount, position);
1312 }
1313
1314 void mpi_unpack_external_ ( char *datarep, void *inbuf, MPI_Aint* insize, MPI_Aint *position, void *outbuf, int* outcount, int* datatype, int* ierr){
1315  *ierr = MPI_Unpack_external( datarep, inbuf, *insize, position, outbuf, *outcount, smpi_type_f2c(*datatype));
1316 }
1317
1318 void mpi_type_hindexed_ (int* count, int* blocklens, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
1319   MPI_Datatype tmp;
1320   *ierr = MPI_Type_hindexed(*count, blocklens, indices, smpi_type_f2c(*old_type), &tmp);
1321   if(*ierr == MPI_SUCCESS) {
1322     *newtype = smpi_type_c2f(tmp);
1323   }
1324 }
1325
1326 void mpi_type_create_hindexed_ (int* count, int* blocklens, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
1327   MPI_Datatype tmp;
1328   *ierr = MPI_Type_create_hindexed(*count, blocklens, indices, smpi_type_f2c(*old_type), &tmp);
1329   if(*ierr == MPI_SUCCESS) {
1330     *newtype = smpi_type_c2f(tmp);
1331   }
1332 }
1333
1334 void mpi_type_create_hindexed_block_ (int* count, int* blocklength, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
1335   MPI_Datatype tmp;
1336   *ierr = MPI_Type_create_hindexed_block(*count, *blocklength, indices, smpi_type_f2c(*old_type), &tmp);
1337   if(*ierr == MPI_SUCCESS) {
1338     *newtype = smpi_type_c2f(tmp);
1339   }
1340 }
1341
1342 void mpi_type_indexed_ (int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr) {
1343   MPI_Datatype tmp;
1344   *ierr = MPI_Type_indexed(*count, blocklens, indices, smpi_type_f2c(*old_type), &tmp);
1345   if(*ierr == MPI_SUCCESS) {
1346     *newtype = smpi_type_c2f(tmp);
1347   }
1348 }
1349
1350 void mpi_type_create_indexed_block_ (int* count, int* blocklength, int* indices,  int* old_type,  int*newtype, int* ierr){
1351   MPI_Datatype tmp;
1352   *ierr = MPI_Type_create_indexed_block(*count, *blocklength, indices, smpi_type_f2c(*old_type), &tmp);
1353   if(*ierr == MPI_SUCCESS) {
1354     *newtype = smpi_type_c2f(tmp);
1355   }
1356 }
1357
1358 void mpi_type_struct_ (int* count, int* blocklens, MPI_Aint* indices, int* old_types, int*  newtype, int* ierr) {
1359   MPI_Datatype tmp;
1360   int i=0;
1361   MPI_Datatype* types = (MPI_Datatype*)xbt_malloc(*count*sizeof(MPI_Datatype));
1362   for(i=0; i< *count; i++){
1363     types[i] = smpi_type_f2c(old_types[i]);
1364   }
1365   *ierr = MPI_Type_struct(*count, blocklens, indices, types, &tmp);
1366   if(*ierr == MPI_SUCCESS) {
1367     *newtype = smpi_type_c2f(tmp);
1368   }
1369   xbt_free(types);
1370 }
1371
1372 void mpi_type_create_struct_ (int* count, int* blocklens, MPI_Aint* indices, int*  old_types, int*  newtype, int* ierr) {
1373   MPI_Datatype tmp;
1374   int i=0;
1375   MPI_Datatype* types = (MPI_Datatype*)xbt_malloc(*count*sizeof(MPI_Datatype));
1376   for(i=0; i< *count; i++){
1377     types[i] = smpi_type_f2c(old_types[i]);
1378   }
1379   *ierr = MPI_Type_create_struct(*count, blocklens, indices, types, &tmp);
1380   if(*ierr == MPI_SUCCESS) {
1381     *newtype = smpi_type_c2f(tmp);
1382   }
1383   xbt_free(types);
1384 }
1385
1386 void mpi_ssend_ (void* buf, int* count, int* datatype, int* dest, int* tag, int* comm, int* ierr) {
1387  *ierr = MPI_Ssend(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm));
1388 }
1389
1390 void mpi_ssend_init_ (void* buf, int* count, int* datatype, int* dest, int* tag, int* comm, int* request, int* ierr) {
1391   MPI_Request tmp;
1392  *ierr = MPI_Ssend_init(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm), &tmp);
1393  if(*ierr == MPI_SUCCESS) {
1394    *request = smpi_request_c2f(tmp);
1395  }
1396 }
1397
1398 void mpi_intercomm_create_ (int* local_comm, int *local_leader, int* peer_comm, int* remote_leader, int* tag, int*  comm_out, int* ierr) {
1399   MPI_Comm tmp;
1400   *ierr = MPI_Intercomm_create(smpi_comm_f2c(*local_comm), *local_leader,smpi_comm_f2c(*peer_comm), *remote_leader, *tag, &tmp);
1401   if(*ierr == MPI_SUCCESS) {
1402     *comm_out = smpi_comm_c2f(tmp);
1403   }
1404 }
1405
1406 void mpi_intercomm_merge_ (int* comm, int* high, int*  comm_out, int* ierr) {
1407  MPI_Comm tmp;
1408  *ierr = MPI_Intercomm_merge(smpi_comm_f2c(*comm), *high, &tmp);
1409  if(*ierr == MPI_SUCCESS) {
1410    *comm_out = smpi_comm_c2f(tmp);
1411  }
1412 }
1413
1414 void mpi_bsend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int* ierr) {
1415  *ierr = MPI_Bsend(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm));
1416 }
1417
1418 void mpi_bsend_init_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1419   MPI_Request tmp;
1420   *ierr = MPI_Bsend_init(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm), &tmp);
1421  if(*ierr == MPI_SUCCESS) {
1422    *request = smpi_request_c2f(tmp);
1423  }
1424 }
1425
1426 void mpi_ibsend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1427   MPI_Request tmp;
1428   *ierr = MPI_Ibsend(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm), &tmp);
1429  if(*ierr == MPI_SUCCESS) {
1430    *request = smpi_request_c2f(tmp);
1431  }
1432 }
1433
1434 void mpi_comm_remote_group_ (int* comm, int*  group, int* ierr) {
1435   MPI_Group tmp;
1436  *ierr = MPI_Comm_remote_group(smpi_comm_f2c(*comm), &tmp);
1437  if(*ierr == MPI_SUCCESS) {
1438    *group = smpi_group_c2f(tmp);
1439  }
1440 }
1441
1442 void mpi_comm_remote_size_ (int* comm, int* size, int* ierr) {
1443  *ierr = MPI_Comm_remote_size(smpi_comm_f2c(*comm), size);
1444 }
1445
1446 void mpi_issend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1447   MPI_Request tmp;
1448   *ierr = MPI_Issend(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm), &tmp);
1449  if(*ierr == MPI_SUCCESS) {
1450    *request = smpi_request_c2f(tmp);
1451  }
1452 }
1453
1454 void mpi_probe_ (int* source, int* tag, int* comm, MPI_Status*  status, int* ierr) {
1455  *ierr = MPI_Probe(*source, *tag, smpi_comm_f2c(*comm), FORT_STATUS_IGNORE(status));
1456 }
1457
1458 void mpi_attr_delete_ (int* comm, int* keyval, int* ierr) {
1459  *ierr = MPI_Attr_delete(smpi_comm_f2c(*comm), *keyval);
1460 }
1461
1462 void mpi_attr_put_ (int* comm, int* keyval, void* attr_value, int* ierr) {
1463  *ierr = MPI_Attr_put(smpi_comm_f2c(*comm), *keyval, attr_value);
1464 }
1465
1466 void mpi_rsend_init_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1467   MPI_Request tmp;
1468   *ierr = MPI_Rsend_init(buf, *count, smpi_type_f2c(*datatype), *dest, *tag, smpi_comm_f2c(*comm), &tmp);
1469  if(*ierr == MPI_SUCCESS) {
1470    *request = smpi_request_c2f(tmp);
1471  }
1472 }
1473
1474 void mpi_keyval_create_ (void* copy_fn, void* delete_fn, int* keyval, void* extra_state, int* ierr) {
1475  *ierr = MPI_Keyval_create((MPI_Copy_function*)copy_fn, (MPI_Delete_function*)delete_fn, keyval, extra_state);
1476 }
1477
1478 void mpi_keyval_free_ (int* keyval, int* ierr) {
1479  *ierr = MPI_Keyval_free(keyval);
1480 }
1481
1482 void mpi_test_cancelled_ (MPI_Status*  status, int* flag, int* ierr) {
1483  *ierr = MPI_Test_cancelled(status, flag);
1484 }
1485
1486 void mpi_pack_ (void* inbuf, int* incount, int* type, void* outbuf, int* outcount, int* position, int* comm, int* ierr) {
1487  *ierr = MPI_Pack(inbuf, *incount, smpi_type_f2c(*type), outbuf, *outcount, position, smpi_comm_f2c(*comm));
1488 }
1489
1490 void mpi_get_elements_ (MPI_Status*  status, int* datatype, int* elements, int* ierr) {
1491  *ierr = MPI_Get_elements(status, smpi_type_f2c(*datatype), elements);
1492 }
1493
1494 void mpi_dims_create_ (int* nnodes, int* ndims, int* dims, int* ierr) {
1495  *ierr = MPI_Dims_create(*nnodes, *ndims, dims);
1496 }
1497
1498 void mpi_iprobe_ (int* source, int* tag, int* comm, int* flag, MPI_Status*  status, int* ierr) {
1499  *ierr = MPI_Iprobe(*source, *tag, smpi_comm_f2c(*comm), flag, status);
1500 }
1501
1502 void mpi_type_get_envelope_ ( int* datatype, int *num_integers, int *num_addresses, int *num_datatypes, int *combiner, int* ierr){
1503
1504  *ierr = MPI_Type_get_envelope(  smpi_type_f2c(*datatype), num_integers,
1505  num_addresses, num_datatypes, combiner);
1506 }
1507
1508 void mpi_type_get_contents_ (int* datatype, int* max_integers, int* max_addresses, int* max_datatypes, int* array_of_integers, MPI_Aint* array_of_addresses,
1509  int* array_of_datatypes, int* ierr){
1510  *ierr = MPI_Type_get_contents(smpi_type_f2c(*datatype), *max_integers, *max_addresses,*max_datatypes, array_of_integers, array_of_addresses, (MPI_Datatype*)array_of_datatypes);
1511 }
1512
1513 void mpi_type_create_darray_ (int* size, int* rank, int* ndims, int* array_of_gsizes, int* array_of_distribs, int* array_of_dargs, int* array_of_psizes,
1514  int* order, int* oldtype, int*newtype, int* ierr) {
1515   MPI_Datatype tmp;
1516   *ierr = MPI_Type_create_darray(*size, *rank, *ndims,  array_of_gsizes,
1517   array_of_distribs,  array_of_dargs,  array_of_psizes,
1518   *order,  smpi_type_f2c(*oldtype), &tmp) ;
1519   if(*ierr == MPI_SUCCESS) {
1520     *newtype = smpi_type_c2f(tmp);
1521   }
1522 }
1523
1524 void mpi_type_create_resized_ (int* oldtype,MPI_Aint* lb, MPI_Aint* extent, int*newtype, int* ierr){
1525   MPI_Datatype tmp;
1526   *ierr = MPI_Type_create_resized(smpi_type_f2c(*oldtype),*lb, *extent, &tmp);
1527   if(*ierr == MPI_SUCCESS) {
1528     *newtype = smpi_type_c2f(tmp);
1529   }
1530 }
1531
1532 void mpi_type_create_subarray_ (int* ndims,int *array_of_sizes, int *array_of_subsizes, int *array_of_starts, int* order, int* oldtype, int*newtype, int* ierr){
1533   MPI_Datatype tmp;
1534   *ierr = MPI_Type_create_subarray(*ndims,array_of_sizes, array_of_subsizes, array_of_starts, *order, smpi_type_f2c(*oldtype), &tmp);
1535   if(*ierr == MPI_SUCCESS) {
1536     *newtype = smpi_type_c2f(tmp);
1537   }
1538 }
1539
1540 void mpi_type_match_size_ (int* typeclass,int* size,int* datatype, int* ierr){
1541   MPI_Datatype tmp;
1542   *ierr = MPI_Type_match_size(*typeclass,*size,&tmp);
1543   if(*ierr == MPI_SUCCESS) {
1544     *datatype = smpi_type_c2f(tmp);
1545   }
1546 }
1547
1548 void mpi_alltoallw_ ( void *sendbuf, int *sendcnts, int *sdispls, int* sendtypes, void *recvbuf, int *recvcnts, int *rdispls, int* recvtypes,
1549  int* comm, int* ierr){
1550  *ierr = MPI_Alltoallw( sendbuf, sendcnts, sdispls, (MPI_Datatype*) sendtypes, recvbuf, recvcnts, rdispls, (MPI_Datatype*)recvtypes, smpi_comm_f2c(*comm));
1551 }
1552
1553 void mpi_exscan_ (void *sendbuf, void *recvbuf, int* count, int* datatype, int* op, int* comm, int* ierr){
1554  *ierr = MPI_Exscan(sendbuf, recvbuf, *count, smpi_type_f2c(*datatype), smpi_op_f2c(*op), smpi_comm_f2c(*comm));
1555 }
1556
1557 void mpi_comm_set_name_ (int* comm, char* name, int* ierr, int size){
1558  char* tname = xbt_malloc((size+1)*sizeof(char));
1559  strncpy(tname, name, size);
1560  tname[size]='\0';
1561  *ierr = MPI_Comm_set_name (smpi_comm_f2c(*comm), tname);
1562  xbt_free(tname);
1563 }
1564
1565 void mpi_comm_dup_with_info_ (int* comm, int* info, int* newcomm, int* ierr){
1566   MPI_Comm tmp;
1567   *ierr = MPI_Comm_dup_with_info(smpi_comm_f2c(*comm),smpi_info_f2c(*info),&tmp);
1568   if(*ierr == MPI_SUCCESS) {
1569     *newcomm = smpi_comm_c2f(tmp);
1570   }
1571 }
1572
1573 void mpi_comm_split_type_ (int* comm, int* split_type, int* key, int* info, int* newcomm, int* ierr){
1574   MPI_Comm tmp;
1575   *ierr = MPI_Comm_split_type(smpi_comm_f2c(*comm), *split_type, *key, smpi_info_f2c(*info), &tmp);
1576   if(*ierr == MPI_SUCCESS) {
1577     *newcomm = smpi_comm_c2f(tmp);
1578   }
1579 }
1580
1581 void mpi_comm_set_info_ (int* comm, int* info, int* ierr){
1582  *ierr = MPI_Comm_set_info (smpi_comm_f2c(*comm), smpi_info_f2c(*info));
1583 }
1584
1585 void mpi_comm_get_info_ (int* comm, int* info, int* ierr){
1586  MPI_Info tmp;
1587  *ierr = MPI_Comm_get_info (smpi_comm_f2c(*comm), &tmp);
1588  if(*ierr==MPI_SUCCESS){
1589    *info = smpi_info_c2f(tmp);
1590  }
1591 }
1592
1593
1594 void mpi_comm_create_errhandler_ ( void *function, void *errhandler, int* ierr){
1595  *ierr = MPI_Comm_create_errhandler( (MPI_Comm_errhandler_fn*) function, (MPI_Errhandler*)errhandler);
1596 }
1597
1598 void mpi_add_error_class_ ( int *errorclass, int* ierr){
1599  *ierr = MPI_Add_error_class( errorclass);
1600 }
1601
1602 void mpi_add_error_code_ (  int* errorclass, int *errorcode, int* ierr){
1603  *ierr = MPI_Add_error_code(*errorclass, errorcode);
1604 }
1605
1606 void mpi_add_error_string_ ( int* errorcode, char *string, int* ierr){
1607  *ierr = MPI_Add_error_string(*errorcode, string);
1608 }
1609
1610 void mpi_comm_call_errhandler_ (int* comm,int* errorcode, int* ierr){
1611  *ierr = MPI_Comm_call_errhandler(smpi_comm_f2c(*comm), *errorcode);
1612 }
1613
1614 void mpi_info_dup_ (int* info, int* newinfo, int* ierr){
1615  MPI_Info tmp;
1616  *ierr = MPI_Info_dup(smpi_info_f2c(*info), &tmp);
1617  if(*ierr==MPI_SUCCESS){
1618    *newinfo= smpi_info_c2f(tmp);
1619  }
1620 }
1621
1622 void mpi_info_get_valuelen_ ( int* info, char *key, int *valuelen, int *flag, int* ierr, unsigned int keylen){
1623  while(key[keylen-1]==' ')keylen--;
1624  while(*key==' '){//handle leading blanks
1625    keylen --;
1626    key++;
1627  }
1628  char* tkey = xbt_malloc((keylen+1)*sizeof(char));
1629  strncpy(tkey, key, keylen);
1630  tkey[keylen]='\0';
1631  *ierr = MPI_Info_get_valuelen( smpi_info_f2c(*info), tkey, valuelen, flag);
1632  xbt_free(tkey);
1633 }
1634
1635 void mpi_info_delete_ (int* info, char *key, int* ierr, unsigned int keylen){
1636  while(key[keylen-1]==' ')keylen--;
1637  while(*key==' '){//handle leading blanks
1638    keylen --;
1639    key++;
1640  }
1641  char* tkey = xbt_malloc((keylen+1)*sizeof(char));
1642  strncpy(tkey, key, keylen);
1643  tkey[keylen]='\0';
1644  *ierr = MPI_Info_delete(smpi_info_f2c(*info), tkey);
1645  xbt_free(tkey);
1646 }
1647
1648 void mpi_info_get_nkeys_ ( int* info, int *nkeys, int* ierr){
1649  *ierr = MPI_Info_get_nkeys(  smpi_info_f2c(*info), nkeys);
1650 }
1651
1652 void mpi_info_get_nthkey_ ( int* info, int* n, char *key, int* ierr, unsigned int keylen){
1653  *ierr = MPI_Info_get_nthkey( smpi_info_f2c(*info), *n, key);
1654  int i = 0;
1655  for (i=strlen(key); i<keylen; i++)
1656  key[i]=' ';
1657 }
1658
1659 void mpi_get_version_ (int *version,int *subversion, int* ierr){
1660  *ierr = MPI_Get_version (version,subversion);
1661 }
1662
1663 void mpi_get_library_version_ (char *version,int *len, int* ierr){
1664  *ierr = MPI_Get_library_version (version,len);
1665 }
1666
1667 void mpi_request_get_status_ ( int* request, int *flag, MPI_Status* status, int* ierr){
1668  *ierr = MPI_Request_get_status( smpi_request_f2c(*request), flag, status);
1669 }
1670
1671 void mpi_grequest_start_ ( void *query_fn, void *free_fn, void *cancel_fn, void *extra_state, int*request, int* ierr){
1672   MPI_Request tmp;
1673   *ierr = MPI_Grequest_start( (MPI_Grequest_query_function*)query_fn, (MPI_Grequest_free_function*)free_fn, (MPI_Grequest_cancel_function*)cancel_fn, extra_state, &tmp);
1674  if(*ierr == MPI_SUCCESS) {
1675    *request = smpi_request_c2f(tmp);
1676  }
1677 }
1678
1679 void mpi_grequest_complete_ ( int* request, int* ierr){
1680  *ierr = MPI_Grequest_complete( smpi_request_f2c(*request));
1681 }
1682
1683 void mpi_status_set_cancelled_ (MPI_Status* status,int* flag, int* ierr){
1684  *ierr = MPI_Status_set_cancelled(status,*flag);
1685 }
1686
1687 void mpi_status_set_elements_ ( MPI_Status* status, int* datatype, int* count, int* ierr){
1688  *ierr = MPI_Status_set_elements( status, smpi_type_f2c(*datatype), *count);
1689 }
1690
1691 void mpi_comm_connect_ ( char *port_name, int* info, int* root, int* comm, int*newcomm, int* ierr){
1692   MPI_Comm tmp;
1693   *ierr = MPI_Comm_connect( port_name, *(MPI_Info*)info, *root, smpi_comm_f2c(*comm), &tmp);
1694   if(*ierr == MPI_SUCCESS) {
1695     *newcomm = smpi_comm_c2f(tmp);
1696   }
1697 }
1698
1699 void mpi_publish_name_ ( char *service_name, int* info, char *port_name, int* ierr){
1700  *ierr = MPI_Publish_name( service_name, *(MPI_Info*)info, port_name);
1701 }
1702
1703 void mpi_unpublish_name_ ( char *service_name, int* info, char *port_name, int* ierr){
1704  *ierr = MPI_Unpublish_name( service_name, *(MPI_Info*)info, port_name);
1705 }
1706
1707 void mpi_lookup_name_ ( char *service_name, int* info, char *port_name, int* ierr){
1708  *ierr = MPI_Lookup_name( service_name, *(MPI_Info*)info, port_name);
1709 }
1710
1711 void mpi_comm_join_ ( int* fd, int* intercomm, int* ierr){
1712   MPI_Comm tmp;
1713   *ierr = MPI_Comm_join( *fd, &tmp);
1714   if(*ierr == MPI_SUCCESS) {
1715     *intercomm = smpi_comm_c2f(tmp);
1716   }
1717 }
1718
1719 void mpi_open_port_ ( int* info, char *port_name, int* ierr){
1720  *ierr = MPI_Open_port( *(MPI_Info*)info,port_name);
1721 }
1722
1723 void mpi_close_port_ ( char *port_name, int* ierr){
1724  *ierr = MPI_Close_port( port_name);
1725 }
1726
1727 void mpi_comm_accept_ ( char *port_name, int* info, int* root, int* comm, int*newcomm, int* ierr){
1728   MPI_Comm tmp;
1729   *ierr = MPI_Comm_accept( port_name, *(MPI_Info*)info, *root, smpi_comm_f2c(*comm), &tmp);
1730   if(*ierr == MPI_SUCCESS) {
1731     *newcomm = smpi_comm_c2f(tmp);
1732   }
1733 }
1734
1735 void mpi_comm_spawn_ ( char *command, char *argv, int* maxprocs, int* info, int* root, int* comm, int* intercomm, int* array_of_errcodes, int* ierr){
1736   MPI_Comm tmp;
1737   *ierr = MPI_Comm_spawn( command, NULL, *maxprocs, *(MPI_Info*)info, *root, smpi_comm_f2c(*comm), &tmp, array_of_errcodes);
1738   if(*ierr == MPI_SUCCESS) {
1739     *intercomm = smpi_comm_c2f(tmp);
1740   }
1741 }
1742
1743 void mpi_comm_spawn_multiple_ ( int* count, char *array_of_commands, char** array_of_argv, int* array_of_maxprocs, int* array_of_info, int* root,
1744  int* comm, int* intercomm, int* array_of_errcodes, int* ierr){
1745  MPI_Comm tmp;
1746  *ierr = MPI_Comm_spawn_multiple(* count, &array_of_commands, &array_of_argv, array_of_maxprocs,
1747  (MPI_Info*)array_of_info, *root, smpi_comm_f2c(*comm), &tmp, array_of_errcodes);
1748  if(*ierr == MPI_SUCCESS) {
1749    *intercomm = smpi_comm_c2f(tmp);
1750  }
1751 }
1752
1753 void mpi_comm_get_parent_ ( int* parent, int* ierr){
1754   MPI_Comm tmp;
1755   *ierr = MPI_Comm_get_parent( &tmp);
1756   if(*ierr == MPI_SUCCESS) {
1757     *parent = smpi_comm_c2f(tmp);
1758   }
1759 }
1760