source: XIOS/dev/branch_openmp/extern/src_ep_dev/ep_lib.hpp @ 1520

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

save dev. TO DO : test with xios

File size: 3.1 KB
RevLine 
[1134]1#ifndef EP_LIB_HPP_INCLUDED
2#define EP_LIB_HPP_INCLUDED
3
4#include "ep_type.hpp"
5#include "ep_lib_intercomm.hpp"
[1520]6#include "ep_lib_intracomm.hpp"
[1134]7#include "ep_lib_local.hpp"
8#include "ep_lib_collective.hpp"
9#include "ep_tag.hpp"
10#include "ep_lib_fortran.hpp"
[1520]11#include "ep_lib_win.hpp"
12#include "ep_lib_mpi.hpp"
13//#include "ep_mpi.hpp"
[1134]14
[1520]15
[1134]16namespace ep_lib
17{
[1365]18  typedef void* MPI_Datatype;
[1368]19  typedef void* MPI_Op;
[1134]20
21  int MPI_Init_thread(int* argc, char*** argv, int required, int*provided);
22
23  int MPI_Init(int *argc, char ***argv);
24
25  int MPI_Initialized(int *flag);
26
27  int MPI_Comm_rank(MPI_Comm comm, int* rank);
28
29  int MPI_Comm_size(MPI_Comm comm, int* rank);
30
31  int MPI_Comm_free(MPI_Comm* comm);
32
33  int MPI_Finalize();
34 
35  double MPI_Wtime();
36
37  int MPI_Abort(MPI_Comm comm, int errorcode);
38
39  int MPI_Get_count(const MPI_Status *status, MPI_Datatype datatype, int *count);
40 
[1520]41  int MPI_Comm_remote_size(MPI_Comm comm, int *size);
[1134]42
43  int MPI_Send(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm);
44  int MPI_Ssend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm);
45  int MPI_Isend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request);
46  int MPI_Issend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request);
47
48
49  int MPI_Recv  (void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status *status);
50  int MPI_Irecv (void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Request *request);
51  int MPI_Mrecv (void *buf, int count, MPI_Datatype datatype, MPI_Message *message, MPI_Status *status);
52  int MPI_Imrecv(void *buf, int count, MPI_Datatype datatype, MPI_Message *message, MPI_Request *request);
53
54
55  int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status);
56  int MPI_Testall(int count, MPI_Request *array_of_requests, int *flag, MPI_Status *array_of_statuses);
57
58  int MPI_Wait(MPI_Request *request, MPI_Status *status);
59  int MPI_Waitall(int count, MPI_Request *array_of_requests, MPI_Status *array_of_statuses);
60
61
62  int MPI_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status);
63  int MPI_Improbe(int source, int tag, MPI_Comm comm, int *flag, MPI_Message *message, MPI_Status *status);
64 
65  int MPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr);
66 
67  int MPI_Alloc_mem(unsigned long size, MPI_Info info, void *baseptr);
68
[1520]69  int MPI_Comm_test_inter(MPI_Comm comm, int *flag);
[1134]70
[1520]71
[1134]72  void check_sum_send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, int type);
73  void check_sum_recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, int type);
[1287]74
75  bool valid_type(MPI_Datatype type);
76  bool valid_op(MPI_Op op);
77
[1520]78  int tag_combine(int real_tag, int src, int dest);
79  int get_ep_rank(MPI_Comm comm, int ep_rank_loc, int mpi_rank);
80
81  int Message_Check(MPI_Comm comm);
82
83  int Request_Check();
84
85  int test_sendrecv(MPI_Comm comm);
86
87
[1134]88}
89
[1287]90//MPI_Datatype to_mpi(ep_lib::MPI_Datatype type);
[1134]91
92
93#endif // EP_LIB_HPP_INCLUDED
Note: See TracBrowser for help on using the repository browser.