Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[smpi] add a gestion of non-contignous data
[simgrid.git] / src / smpi / smpi_mpi.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5   * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "private.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_mpi, smpi,
10                                 "Logging specific to SMPI (mpi)");
11
12 /* MPI User level calls */
13
14 int MPI_Init(int *argc, char ***argv)
15 {
16   return PMPI_Init(argc, argv);
17 }
18
19 int MPI_Finalize(void)
20 {
21   return PMPI_Finalize();
22 }
23
24 int MPI_Init_thread(int *argc, char ***argv, int required, int *provided)
25 {
26   return PMPI_Init_thread(argc, argv, required, provided);
27 }
28
29 int MPI_Query_thread(int *provided)
30 {
31   return PMPI_Query_thread(provided);
32 }
33
34 int MPI_Is_thread_main(int *flag)
35 {
36   return PMPI_Is_thread_main(flag);
37 }
38
39 int MPI_Abort(MPI_Comm comm, int errorcode)
40 {
41   return PMPI_Abort(comm, errorcode);
42 }
43
44 double MPI_Wtime(void)
45 {
46   return PMPI_Wtime();
47 }
48
49 double MPI_Wtick(void)
50 {
51   return PMPI_Wtick();
52 }
53
54 int MPI_Address(void *location, MPI_Aint * address)
55 {
56   return PMPI_Address(location, address);
57 }
58
59 int MPI_Type_free(MPI_Datatype * datatype)
60 {
61   return PMPI_Type_free(datatype);
62 }
63
64 int MPI_Type_size(MPI_Datatype datatype, int *size)
65 {
66   return PMPI_Type_size(datatype, size);
67 }
68
69 int MPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent)
70 {
71   return PMPI_Type_get_extent(datatype, lb, extent);
72 }
73
74 int MPI_Type_extent(MPI_Datatype datatype, MPI_Aint * extent)
75 {
76   return PMPI_Type_extent(datatype, extent);
77 }
78
79 int MPI_Type_lb(MPI_Datatype datatype, MPI_Aint * disp)
80 {
81   return PMPI_Type_lb(datatype, disp);
82 }
83
84 int MPI_Type_ub(MPI_Datatype datatype, MPI_Aint * disp)
85 {
86   return PMPI_Type_ub(datatype, disp);
87 }
88
89 int MPI_Op_create(MPI_User_function * function, int commute, MPI_Op * op)
90 {
91   return PMPI_Op_create(function, commute, op);
92 }
93
94 int MPI_Op_free(MPI_Op * op)
95 {
96   return PMPI_Op_free(op);
97 }
98
99 int MPI_Group_free(MPI_Group * group)
100 {
101   return PMPI_Group_free(group);
102 }
103
104 int MPI_Group_size(MPI_Group group, int *size)
105 {
106   return PMPI_Group_size(group, size);
107 }
108
109 int MPI_Group_rank(MPI_Group group, int *rank)
110 {
111   return PMPI_Group_rank(group, rank);
112 }
113
114 int MPI_Group_translate_ranks(MPI_Group group1, int n, int *ranks1,
115                               MPI_Group group2, int *ranks2)
116 {
117   return PMPI_Group_translate_ranks(group1, n, ranks1, group2, ranks2);
118 }
119
120 int MPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result)
121 {
122   return PMPI_Group_compare(group1, group2, result);
123 }
124
125 int MPI_Group_union(MPI_Group group1, MPI_Group group2, MPI_Group * newgroup)
126 {
127   return PMPI_Group_union(group1, group2, newgroup);
128 }
129
130 int MPI_Group_intersection(MPI_Group group1, MPI_Group group2, MPI_Group * newgroup)
131 {
132   return PMPI_Group_intersection(group1, group2, newgroup);
133 }
134
135 int MPI_Group_difference(MPI_Group group1, MPI_Group group2, MPI_Group * newgroup)
136 {
137   return PMPI_Group_difference(group1, group2, newgroup);
138 }
139
140 int MPI_Group_incl(MPI_Group group, int n, int *ranks, MPI_Group * newgroup)
141 {
142   return PMPI_Group_incl(group, n, ranks, newgroup);
143 }
144
145 int MPI_Group_excl(MPI_Group group, int n, int *ranks, MPI_Group * newgroup)
146 {
147   return PMPI_Group_excl(group, n, ranks, newgroup);
148 }
149
150 int MPI_Group_range_incl(MPI_Group group, int n, int ranges[][3],
151                          MPI_Group * newgroup)
152 {
153   return PMPI_Group_range_incl(group, n, ranges, newgroup);
154 }
155
156 int MPI_Group_range_excl(MPI_Group group, int n, int ranges[][3],
157                          MPI_Group * newgroup)
158 {
159   return PMPI_Group_range_excl(group, n, ranges, newgroup);
160 }
161
162 int MPI_Comm_rank(MPI_Comm comm, int *rank)
163 {
164   return PMPI_Comm_rank(comm, rank);
165 }
166
167 int MPI_Comm_size(MPI_Comm comm, int *size)
168 {
169   return PMPI_Comm_size(comm, size);
170 }
171
172 int MPI_Comm_get_name (MPI_Comm comm, char* name, int* len)
173 {
174   return PMPI_Comm_get_name(comm, name, len);
175 }
176
177 int MPI_Comm_group(MPI_Comm comm, MPI_Group * group)
178 {
179   return PMPI_Comm_group(comm, group);
180 }
181
182 int MPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result)
183 {
184   return PMPI_Comm_compare(comm1, comm2, result);
185 }
186
187 int MPI_Comm_dup(MPI_Comm comm, MPI_Comm * newcomm)
188 {
189   return PMPI_Comm_dup(comm, newcomm);
190 }
191
192 int MPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm * newcomm)
193 {
194   return PMPI_Comm_create(comm, group, newcomm);
195 }
196
197 int MPI_Comm_free(MPI_Comm * comm)
198 {
199   return PMPI_Comm_free(comm);
200 }
201
202 int MPI_Comm_disconnect(MPI_Comm * comm)
203 {
204   return PMPI_Comm_disconnect(comm);
205 }
206
207 int MPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm* comm_out)
208 {
209   return PMPI_Comm_split(comm, color, key, comm_out);
210 }
211
212 int MPI_Send_init(void *buf, int count, MPI_Datatype datatype, int dst,
213                   int tag, MPI_Comm comm, MPI_Request * request)
214 {
215   return PMPI_Send_init(buf, count, datatype, dst, tag, comm, request);
216 }
217
218 int MPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int src,
219                   int tag, MPI_Comm comm, MPI_Request * request)
220 {
221   return PMPI_Recv_init(buf, count, datatype, src, tag, comm, request);
222 }
223
224 int MPI_Start(MPI_Request * request)
225 {
226   return PMPI_Start(request);
227 }
228
229 int MPI_Startall(int count, MPI_Request * requests)
230 {
231   return PMPI_Startall(count, requests);
232 }
233
234 int MPI_Request_free(MPI_Request * request)
235 {
236   return PMPI_Request_free(request);
237 }
238
239 int MPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src,
240               int tag, MPI_Comm comm, MPI_Request * request)
241 {
242   return PMPI_Irecv(buf, count, datatype, src, tag, comm, request);
243 }
244
245 int MPI_Isend(void *buf, int count, MPI_Datatype datatype, int dst,
246               int tag, MPI_Comm comm, MPI_Request * request)
247 {
248   return PMPI_Isend(buf, count, datatype, dst, tag, comm, request);
249 }
250
251 int MPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag,
252              MPI_Comm comm, MPI_Status * status)
253 {
254   return PMPI_Recv(buf, count, datatype, src, tag, comm, status);
255 }
256
257 int MPI_Send(void *buf, int count, MPI_Datatype datatype, int dst, int tag,
258              MPI_Comm comm)
259 {
260   return PMPI_Send(buf, count, datatype, dst, tag, comm);
261 }
262
263 int MPI_Sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
264                  int dst, int sendtag, void *recvbuf, int recvcount,
265                  MPI_Datatype recvtype, int src, int recvtag,
266                  MPI_Comm comm, MPI_Status * status)
267 {
268   return PMPI_Sendrecv(sendbuf, sendcount, sendtype, dst, sendtag,
269                        recvbuf, recvcount, recvtype, src, recvtag,
270                        comm, status);
271 }
272
273 int MPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype,
274                          int dst, int sendtag, int src, int recvtag,
275                          MPI_Comm comm, MPI_Status * status)
276 {
277   return PMPI_Sendrecv_replace(buf, count, datatype, dst, sendtag, src,
278                                recvtag, comm, status);
279 }
280
281 int MPI_Test(MPI_Request * request, int *flag, MPI_Status * status)
282 {
283   return PMPI_Test(request, flag, status);
284 }
285
286 int MPI_Testany(int count, MPI_Request requests[], int *index, int *flag,
287                 MPI_Status * status)
288 {
289   return PMPI_Testany(count, requests, index, flag, status);
290 }
291
292 int MPI_Wait(MPI_Request * request, MPI_Status * status)
293 {
294   return PMPI_Wait(request, status);
295 }
296
297 int MPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * status)
298 {
299   return PMPI_Waitany(count, requests, index, status);
300 }
301
302 int MPI_Waitall(int count, MPI_Request requests[], MPI_Status status[])
303 {
304   return PMPI_Waitall(count, requests, status);
305 }
306
307 int MPI_Waitsome(int incount, MPI_Request requests[], int *outcount,
308                  int *indices, MPI_Status status[])
309 {
310   return PMPI_Waitsome(incount, requests, outcount, indices, status);
311 }
312
313 int MPI_Bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
314 {
315   return PMPI_Bcast(buf, count, datatype, root, comm);
316 }
317
318 int MPI_Barrier(MPI_Comm comm)
319 {
320   return PMPI_Barrier(comm);
321 }
322
323 int MPI_Gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
324                void *recvbuf, int recvcount, MPI_Datatype recvtype,
325                int root, MPI_Comm comm)
326 {
327   return PMPI_Gather(sendbuf, sendcount, sendtype,
328                      recvbuf, recvcount, recvtype,
329                      root, comm);
330 }
331
332 int MPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
333                 void *recvbuf, int *recvcounts, int *displs,
334                 MPI_Datatype recvtype, int root, MPI_Comm comm)
335 {
336   return PMPI_Gatherv(sendbuf, sendcount, sendtype,
337                       recvbuf, recvcounts, displs, recvtype,
338                       root, comm);
339 }
340
341 int MPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
342                   void *recvbuf, int recvcount, MPI_Datatype recvtype,
343                   MPI_Comm comm)
344 {
345   return PMPI_Allgather(sendbuf, sendcount, sendtype,
346                         recvbuf, recvcount, recvtype,
347                         comm);
348 }
349
350 int MPI_Allgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
351                    void *recvbuf, int *recvcounts, int *displs,
352                    MPI_Datatype recvtype, MPI_Comm comm)
353 {
354   return PMPI_Allgatherv(sendbuf, sendcount, sendtype,
355                          recvbuf, recvcounts, displs, recvtype,
356                          comm);
357 }
358
359 int MPI_Scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
360                 void *recvbuf, int recvcount, MPI_Datatype recvtype,
361                 int root, MPI_Comm comm)
362 {
363   return PMPI_Scatter(sendbuf, sendcount, sendtype,
364                       recvbuf, recvcount, recvtype,
365                       root, comm);
366 }
367
368 int MPI_Scatterv(void *sendbuf, int *sendcounts, int *displs,
369                  MPI_Datatype sendtype, void *recvbuf, int recvcount,
370                  MPI_Datatype recvtype, int root, MPI_Comm comm)
371 {
372   return PMPI_Scatterv(sendbuf, sendcounts, displs, sendtype,
373                        recvbuf, recvcount, recvtype,
374                        root, comm);
375 }
376
377 int MPI_Reduce(void *sendbuf, void *recvbuf, int count,
378                MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm)
379 {
380   return PMPI_Reduce(sendbuf, recvbuf, count, datatype, op, root, comm);
381 }
382
383 int MPI_Allreduce(void *sendbuf, void *recvbuf, int count,
384                   MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
385 {
386   return PMPI_Allreduce(sendbuf, recvbuf, count, datatype, op, comm);
387 }
388
389 int MPI_Scan(void *sendbuf, void *recvbuf, int count,
390              MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
391 {
392   return PMPI_Scan(sendbuf, recvbuf, count, datatype, op, comm);
393 }
394
395 int MPI_Reduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts,
396                        MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
397 {
398   return PMPI_Reduce_scatter(sendbuf, recvbuf, recvcounts, datatype, op, comm);
399 }
400
401 int MPI_Alltoall(void *sendbuf, int sendcount, MPI_Datatype sendtype,
402                  void *recvbuf, int recvcount, MPI_Datatype recvtype,
403                  MPI_Comm comm)
404 {
405   return PMPI_Alltoall(sendbuf, sendcount, sendtype,
406                        recvbuf, recvcount, recvtype,
407                        comm);
408 }
409
410 int MPI_Alltoallv(void *sendbuf, int *sendcounts, int *senddisps,
411                   MPI_Datatype sendtype, void *recvbuf, int *recvcounts,
412                   int *recvdisps, MPI_Datatype recvtype, MPI_Comm comm)
413 {
414   return PMPI_Alltoallv(sendbuf, sendcounts, senddisps, sendtype,
415                         recvbuf, recvcounts, recvdisps, recvtype,
416                         comm);
417 }
418
419
420 int MPI_Get_processor_name(char *name, int *resultlen)
421 {
422   return PMPI_Get_processor_name(name, resultlen);
423 }
424
425 int MPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count)
426 {
427   return PMPI_Get_count(status, datatype, count);
428 }
429
430 int MPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int* size) {
431   return PMPI_Pack_size(incount, datatype, comm, size);
432 }
433
434 int MPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int* coords) {
435   return PMPI_Cart_coords(comm, rank, maxdims, coords);
436 }
437
438 int MPI_Cart_create(MPI_Comm comm_old, int ndims, int* dims, int* periods, int reorder, MPI_Comm* comm_cart) {
439   return PMPI_Cart_create(comm_old, ndims, dims, periods, reorder, comm_cart);
440 }
441
442 int MPI_Cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, int* coords) {
443   return PMPI_Cart_get(comm, maxdims, dims, periods, coords);
444 }
445
446 int MPI_Cart_map(MPI_Comm comm_old, int ndims, int* dims, int* periods, int* newrank) {
447   return PMPI_Cart_map(comm_old, ndims, dims, periods, newrank);
448 }
449
450 int MPI_Cart_rank(MPI_Comm comm, int* coords, int* rank) {
451   return PMPI_Cart_rank(comm, coords, rank);
452 }
453
454 int MPI_Cart_shift(MPI_Comm comm, int direction, int displ, int* source, int* dest) {
455   return PMPI_Cart_shift(comm, direction, displ, source, dest);
456 }
457
458 int MPI_Cart_sub(MPI_Comm comm, int* remain_dims, MPI_Comm* comm_new) {
459   return PMPI_Cart_sub(comm, remain_dims, comm_new);
460 }
461
462 int MPI_Cartdim_get(MPI_Comm comm, int* ndims) {
463   return PMPI_Cartdim_get(comm, ndims);
464 }
465
466 int MPI_Graph_create(MPI_Comm comm_old, int nnodes, int* index, int* edges, int reorder, MPI_Comm* comm_graph) {
467   return PMPI_Graph_create(comm_old, nnodes, index, edges, reorder, comm_graph);
468 }
469
470 int MPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges, int* index, int* edges) {
471   return PMPI_Graph_get(comm, maxindex, maxedges, index, edges);
472 }
473
474 int MPI_Graph_map(MPI_Comm comm_old, int nnodes, int* index, int* edges, int* newrank) {
475   return PMPI_Graph_map(comm_old, nnodes, index, edges, newrank);
476 }
477
478 int MPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors, int* neighbors) {
479   return PMPI_Graph_neighbors(comm, rank, maxneighbors, neighbors);
480 }
481
482 int MPI_Graph_neighbors_count(MPI_Comm comm, int rank, int* nneighbors) {
483   return PMPI_Graph_neighbors_count(comm, rank, nneighbors);
484 }
485
486 int MPI_Graphdims_get(MPI_Comm comm, int* nnodes, int* nedges) {
487   return PMPI_Graphdims_get(comm, nnodes, nedges);
488 }
489
490 int MPI_Topo_test(MPI_Comm comm, int* top_type) {
491   return PMPI_Topo_test(comm, top_type);
492 }
493
494 int MPI_Error_class(int errorcode, int* errorclass) {
495   return PMPI_Error_class(errorcode, errorclass);
496 }
497
498 int MPI_Errhandler_create(MPI_Handler_function* function, MPI_Errhandler* errhandler) {
499   return PMPI_Errhandler_create(function, errhandler);
500 }
501
502 int MPI_Errhandler_free(MPI_Errhandler* errhandler) {
503   return PMPI_Errhandler_free(errhandler);
504 }
505
506 int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler* errhandler) {
507   return PMPI_Errhandler_get(comm, errhandler);
508 }
509
510 int MPI_Error_string(int errorcode, char* string, int* resultlen) {
511   return PMPI_Error_string(errorcode, string, resultlen);
512 }
513
514 int MPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler) {
515   return PMPI_Errhandler_set(comm, errhandler);
516 }
517
518 int MPI_Type_contiguous(int count, MPI_Datatype old_type, MPI_Datatype* newtype) {
519   return PMPI_Type_contiguous(count, old_type, newtype);
520 }
521
522 int MPI_Cancel(MPI_Request* request) {
523   return PMPI_Cancel(request);
524 }
525
526 int MPI_Buffer_attach(void* buffer, int size) {
527   return PMPI_Buffer_attach(buffer, size);
528 }
529
530 int MPI_Buffer_detach(void* buffer, int* size) {
531   return PMPI_Buffer_detach(buffer, size);
532 }
533
534 int MPI_Testsome(int incount, MPI_Request* requests, int* outcount, int* indices, MPI_Status* statuses) {
535   return PMPI_Testsome(incount, requests, outcount, indices, statuses);
536 }
537
538 int MPI_Comm_test_inter(MPI_Comm comm, int* flag) {
539   return PMPI_Comm_test_inter(comm, flag);
540 }
541
542 int MPI_Unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Datatype type, MPI_Comm comm) {
543   return PMPI_Unpack(inbuf, insize, position, outbuf, outcount, type, comm);
544 }
545
546 int MPI_Type_commit(MPI_Datatype* datatype) {
547   return PMPI_Type_commit(datatype);
548 }
549
550 int MPI_Type_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* newtype) {
551   return PMPI_Type_hindexed(count, blocklens, indices, old_type, newtype);
552 }
553
554 int MPI_Type_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* newtype) {
555   return PMPI_Type_hvector(count, blocklen, stride, old_type, newtype);
556 }
557
558 int MPI_Type_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* newtype) {
559   return PMPI_Type_indexed(count, blocklens, indices, old_type, newtype);
560 }
561
562 int MPI_Type_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* newtype) {
563   return PMPI_Type_struct(count, blocklens, indices, old_types, newtype);
564 }
565
566 int MPI_Type_vector(int count, int blocklen, int stride, MPI_Datatype old_type, MPI_Datatype* newtype) {
567   return PMPI_Type_vector(count, blocklen, stride, old_type, newtype);
568 }
569
570 int MPI_Ssend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) {
571   return PMPI_Ssend(buf, count, datatype, dest, tag, comm);
572 }
573
574 int MPI_Ssend_init(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
575   return PMPI_Ssend_init(buf, count, datatype, dest, tag, comm, request);
576 }
577
578 int MPI_Intercomm_create(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm, int remote_leader, int tag, MPI_Comm* comm_out) {
579   return PMPI_Intercomm_create(local_comm, local_leader, peer_comm, remote_leader, tag, comm_out);
580 }
581
582 int MPI_Intercomm_merge(MPI_Comm comm, int high, MPI_Comm* comm_out) {
583   return PMPI_Intercomm_merge(comm, high, comm_out);
584 }
585
586 int MPI_Bsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) {
587   return PMPI_Bsend(buf, count, datatype, dest, tag, comm);
588 }
589
590 int MPI_Bsend_init(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
591   return PMPI_Bsend_init(buf, count, datatype, dest, tag, comm, request);
592 }
593
594 int MPI_Ibsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
595   return PMPI_Ibsend(buf, count, datatype, dest, tag, comm, request);
596 }
597
598 int MPI_Comm_remote_group(MPI_Comm comm, MPI_Group* group) {
599   return PMPI_Comm_remote_group(comm, group);
600 }
601
602 int MPI_Comm_remote_size(MPI_Comm comm, int* size) {
603   return PMPI_Comm_remote_size(comm, size);
604 }
605
606 int MPI_Issend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
607   return PMPI_Issend(buf, count, datatype, dest, tag, comm, request);
608 }
609
610 int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) {
611   return PMPI_Probe(source, tag, comm, status);
612 }
613
614 int MPI_Attr_delete(MPI_Comm comm, int keyval) {
615   return PMPI_Attr_delete(comm, keyval);
616 }
617
618 int MPI_Attr_get(MPI_Comm comm, int keyval, void* attr_value, int* flag) {
619   return PMPI_Attr_get(comm, keyval, attr_value, flag);
620 }
621
622 int MPI_Attr_put(MPI_Comm comm, int keyval, void* attr_value) {
623   return PMPI_Attr_put(comm, keyval, attr_value);
624 }
625
626 int MPI_Rsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) {
627   return PMPI_Rsend(buf, count, datatype, dest, tag, comm);
628 }
629
630 int MPI_Rsend_init(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
631   return PMPI_Rsend_init(buf, count, datatype, dest, tag, comm, request);
632 }
633
634 int MPI_Irsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) {
635   return PMPI_Irsend(buf, count, datatype, dest, tag, comm, request);
636 }
637
638 int MPI_Keyval_create(MPI_Copy_function* copy_fn, MPI_Delete_function* delete_fn, int* keyval, void* extra_state) {
639   return PMPI_Keyval_create(copy_fn, delete_fn, keyval, extra_state);
640 }
641
642 int MPI_Keyval_free(int* keyval) {
643   return PMPI_Keyval_free(keyval);
644 }
645
646 int MPI_Test_cancelled(MPI_Status* status, int* flag) {
647   return PMPI_Test_cancelled(status, flag);
648 }
649
650 int MPI_Pack(void* inbuf, int incount, MPI_Datatype type, void* outbuf, int outcount, int* position, MPI_Comm comm) {
651   return PMPI_Pack(inbuf, incount, type, outbuf, outcount, position, comm);
652 }
653
654 int MPI_Testall(int count, MPI_Request* requests, int* flag, MPI_Status* statuses) {
655   return PMPI_Testall(count, requests, flag, statuses);
656 }
657
658 int MPI_Get_elements(MPI_Status* status, MPI_Datatype datatype, int* elements) {
659   return PMPI_Get_elements(status, datatype, elements);
660 }
661
662 int MPI_Dims_create(int nnodes, int ndims, int* dims) {
663   return PMPI_Dims_create(nnodes, ndims, dims);
664 }
665
666 int MPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) {
667   return PMPI_Iprobe(source, tag, comm, flag, status);
668 }
669
670 int MPI_Initialized(int* flag) {
671   return PMPI_Initialized(flag);
672 }