Logo AND Algorithmique Numérique Distribuée

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