source: XIOS/dev/branch_openmp/extern/ep_dev/ep_lib_mpi.hpp @ 1538

Last change on this file since 1538 was 1538, checked in by yushan, 6 years ago

tests in XIOS OK (client, complete, remap, toy)

File size: 1.5 KB
RevLine 
[1505]1#ifndef EP_LIB_MPI_HPP_INCLUDED
2#define EP_LIB_MPI_HPP_INCLUDED
3
4namespace ep_lib
5{
6
7  typedef void* MPI_Datatype;
8  typedef void* MPI_Op;
9
10
11  int MPI_Send_mpi      (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm);
12  int MPI_Ssend_mpi      (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm);
13  int MPI_Isend_mpi      (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request);
14  int MPI_Issend_mpi      (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request);
15 
16 
17  int MPI_Recv_mpi      (void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status *status);
18  int MPI_Irecv_mpi      (void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Request *request);
19
[1522]20  int MPI_Iprobe_mpi(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status);
[1527]21  int MPI_Improbe_mpi(int src, int tag, MPI_Comm comm, int *flag, MPI_Message *message, MPI_Status *status);
[1522]22 
[1515]23  int MPI_Comm_rank_mpi(MPI_Comm comm, int* rank);
24  int MPI_Comm_size_mpi(MPI_Comm comm, int* size);
25  int MPI_Comm_remote_size_mpi(MPI_Comm comm, int* size);
26
[1517]27  int MPI_Comm_dup_mpi(MPI_Comm comm, MPI_Comm *newcomm);
28  int MPI_Comm_free_mpi(MPI_Comm *comm);
29
30  int MPI_Barrier_mpi(MPI_Comm comm);
[1538]31 
32  int MPI_Intercomm_create_mpi(MPI_Comm local_comm, int local_leader, MPI_Comm peer_comm, int remote_leader, int tag, MPI_Comm *newintercomm);
[1527]33
[1505]34}
35
36#endif // EP_LIB_MPI_HPP_INCLUDED
Note: See TracBrowser for help on using the repository browser.