Logo AND Algorithmique Numérique Distribuée

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