source: XIOS/dev/branch_openmp/extern/src_ep_dev/ep_type.cpp @ 1365

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

unify type : MPI_Datatype MPI_Aint

File size: 4.0 KB
Line 
1#include "ep_lib.hpp"
2#include <mpi.h>
3#include "ep_declaration.hpp"
4#include <iostream>
5#include <fstream>
6#include "ep_mpi.hpp"
7
8using namespace std;
9
10
11namespace ep_lib
12{ 
13 
14  ep_intercomm::ep_intercomm()
15  {
16    intercomm_rank_map = NULL;
17    local_rank_map = NULL;
18    remote_rank_map = NULL;
19    mpi_inter_comm = new ::MPI_Comm;
20  }
21
22  bool ep_intercomm::operator == (ep_intercomm right)
23  {
24    bool a = intercomm_rank_map == right.intercomm_rank_map;
25    bool b = local_rank_map == right.local_rank_map;
26    bool c = remote_rank_map == right.remote_rank_map;
27    bool d = *(static_cast< ::MPI_Comm*>(mpi_inter_comm)) == *(static_cast< ::MPI_Comm*>(right.mpi_inter_comm));
28    bool e = size_rank_info == right.size_rank_info;
29    bool f = intercomm_tag == right.intercomm_tag;
30    return a&&b&&c&&d&&e&&f;
31  }
32
33  bool ep_intercomm::operator != (ep_intercomm right)
34  {
35    bool a = intercomm_rank_map != right.intercomm_rank_map;
36    bool b = local_rank_map != right.local_rank_map;
37    bool c = remote_rank_map != right.remote_rank_map;
38    bool d = *(static_cast< ::MPI_Comm*>(mpi_inter_comm)) != *(static_cast< ::MPI_Comm*>(right.mpi_inter_comm));
39    bool e = size_rank_info != right.size_rank_info;
40    bool f = intercomm_tag != right.intercomm_tag;
41    return a||b||c||d||e||f;
42  }
43
44  ep_communicator::ep_communicator()
45  {
46    comm_list = NULL;
47    message_queue = NULL;
48    intercomm = NULL;
49  }
50
51  MPI_Message::MPI_Message(void* message)
52  {
53    mpi_message = new ::MPI_Message;
54    *(static_cast< ::MPI_Message*>(mpi_message)) = *(static_cast< ::MPI_Message*>(message));
55  }
56
57  MPI_Info::MPI_Info(void* info)
58  {
59    mpi_info = new ::MPI_Info;
60    *(static_cast< ::MPI_Info*>(mpi_info)) = *(static_cast< ::MPI_Info*>(info));
61  }
62 
63//  MPI_Request::MPI_Request(void* request)
64//  {
65//    mpi_request = new ::MPI_Request;
66//    *(static_cast< ::MPI_Request*>(mpi_request)) = *(static_cast< ::MPI_Request*>(request));
67//  }
68  MPI_Aint::MPI_Aint(void* aint)
69  {
70    mpi_aint = new ::MPI_Aint;
71    *(static_cast< ::MPI_Aint*>(mpi_aint)) = *(static_cast< ::MPI_Aint*>(aint));
72  }
73
74  bool ep_communicator::operator == (ep_communicator right)
75  {
76    bool a = size_rank_info == right.size_rank_info;
77    bool b = comm_label == right.comm_label;
78    bool c = intercomm == right.intercomm;
79    return a&&b&&c;
80  }
81
82  bool ep_communicator::operator != (ep_communicator right)
83  {
84    bool a = size_rank_info != right.size_rank_info;
85    bool b = comm_label != right.comm_label;
86    bool c = intercomm != right.intercomm;
87    return a||b||c;
88  }
89
90  MPI_Comm::MPI_Comm()
91  {
92    is_ep = true;
93    is_intercomm = false;
94    my_buffer = NULL;
95    ep_barrier = NULL;
96    rank_map = NULL;
97    ep_comm_ptr = NULL;
98    mem_bridge = NULL;
99    mpi_bridge = NULL;
100    mpi_comm = new ::MPI_Comm;
101  }
102
103 
104
105  MPI_Comm::MPI_Comm(void* comm)
106  {
107    is_ep = false;
108    is_intercomm = false;
109    my_buffer = NULL;
110    ep_barrier = NULL;
111    rank_map = NULL;
112    ep_comm_ptr = NULL;
113    mem_bridge = NULL;
114    mpi_bridge = NULL;
115    mpi_comm = new ::MPI_Comm;
116    *(static_cast< ::MPI_Comm*>(mpi_comm)) = *(static_cast< ::MPI_Comm*>(comm));
117  }
118
119 
120
121  bool MPI_Comm::operator == (MPI_Comm right)
122  {
123    bool a = is_ep == right.is_ep;
124    bool b = is_intercomm == right.is_intercomm;
125    bool c = *(static_cast< ::MPI_Comm*>(mpi_comm)) == *(static_cast< ::MPI_Comm*>(right.mpi_comm));
126    bool d = is_ep ? ep_comm_ptr == right.ep_comm_ptr : true;
127    return a&&b&&c&&d;
128  }
129
130  bool MPI_Comm::operator != (MPI_Comm right)
131  {
132    bool a = is_ep != right.is_ep;
133    bool b = is_intercomm != right.is_intercomm;
134    bool c = *(static_cast< ::MPI_Comm*>(mpi_comm)) != *(static_cast< ::MPI_Comm*>(right.mpi_comm));
135    bool d = is_ep ? ep_comm_ptr != right.ep_comm_ptr : true;
136    return a||b||c||d;
137  }
138
139  bool MPI_Request::operator == (MPI_Request right)
140  {
141    bool b = type == right.type;
142    bool c = buf == right.buf;
143    bool d = ep_src == right.ep_src;
144    bool e = ep_tag == right.ep_tag;
145    bool f = ep_datatype == right.ep_datatype;
146    return b&&c&&d&&e&&f;
147  }
148
149
150}
151
152
153
154
155
156
157
158
159
Note: See TracBrowser for help on using the repository browser.