-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
195 lines (142 loc) · 7.54 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#include <exception>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <cmath>
#include <limits>
#include <iomanip>
#include <mpi.h>
#ifdef _OPENMP
#include <omp.h>
#endif
#include <sys/time.h> // gettimeofday
#include "DHP_PE_RA_FDM.h"
using std::exception;
using std::cout;
using std::endl;
using std::fstream;
using std::stringstream;
using std::string;
using std::setprecision;
using std::numeric_limits;
// ==================================================================================================================================================
// DHP_PE_RA_FDM_superprac
// ==================================================================================================================================================
class DHP_PE_RA_FDM_superprac : public DHP_PE_RA_FDM {
public:
DHP_PE_RA_FDM_superprac(const int grid_size_x, const int grid_size_y, const double eps_):
DHP_PE_RA_FDM(0, 0, 3, 3, grid_size_x, grid_size_y, eps_, 1) {}
void Print_p (const string& dout_name) const;
private:
double F (const double x, const double y) const;
double fi (const double x, const double y) const;
};
// ==================================================================================================================================================
// ==================================================================================================================================================
// Computing grid fragmentation between processes. I expect specific amount of processes
//
void ComputeGridFragmentation (const ProcParams& procParams, int& x_proc_num, int& y_proc_num);
// ==================================================================================================================================================
// MAIN
// ==================================================================================================================================================
int main (int argc, char** argv){
if (argc != 4) {
cout << "Wrong arguments. Example: ./program grid_size eps output.txt" << endl;
return 1;
}
int grid_size; stringstream(argv[1]) >> grid_size;
double eps; stringstream(argv[2]) >> eps;
string fout_name = string(argv[3]);
MPI_Init(&argc,&argv);
try {
ProcParams procParams (MPI_COMM_WORLD);
int x_proc_num = 0;
int y_proc_num = 0;
ComputeGridFragmentation (procParams, x_proc_num, y_proc_num);
if (procParams.rank == 0){
#ifdef _OPENMP
cout << "OpenMP-version= " << _OPENMP << " Max-threads= " << omp_get_max_threads() << endl;
#endif
}
DHP_PE_RA_FDM_superprac superPrac_2 (grid_size, grid_size, eps);
struct timeval tp;
gettimeofday(&tp, NULL);
long int start_ms = tp.tv_sec * 1000 + tp.tv_usec / 1000;
superPrac_2.Compute(procParams, x_proc_num, y_proc_num);
gettimeofday(&tp, NULL);
long int finish_ms = tp.tv_sec * 1000 + tp.tv_usec / 1000;
if (procParams.rank == 0){
int ms = finish_ms - start_ms;
cout << "out= " << fout_name << endl
<< "x_p_N= " << x_proc_num << endl
<< "y_p_N= " << y_proc_num << endl
<< "ms= " << finish_ms - start_ms << " m:s= " << ms / 1000 / 60 << ":" << ms / 1000 % 60 << endl
<< "it= " << superPrac_2.getIterationsCounter() << endl;
}
superPrac_2.Print_p(fout_name);
}
catch (exception& e) {
cout << e.what() << endl;
// MPI_Abort(MPI_COMM_WORLD, 2);
MPI_Finalize();
return 1;
}
MPI_Finalize();
return 0;
}
// ==================================================================================================================================================
// DHP_PE_RA_FDM_superprac::F
// ==================================================================================================================================================
double DHP_PE_RA_FDM_superprac::F (const double x, const double y) const{
double t = 1 + x*y;
if (t == 0)
throw DHP_PE_RA_FDM_Exception("Error computing 'F' function.");
return (x*x + y*y)/(t*t);
}
// ==================================================================================================================================================
// DHP_PE_RA_FDM_superprac::fi
// ==================================================================================================================================================
double DHP_PE_RA_FDM_superprac::fi (const double x, const double y) const{
double t = 1 + x*y;
if (t <= 0)
throw DHP_PE_RA_FDM_Exception("Error computing 'fi' function.");
return std::log(1 + x*y);
}
// ==================================================================================================================================================
// DHP_PE_RA_FDM_superprac::Print_p
// ==================================================================================================================================================
void DHP_PE_RA_FDM_superprac::Print_p (const string& dout_name) const{
ProcParams procParams = getProcParams();
ProcComputingCoords procCoords = getProcCoords();
stringstream ss;
ss << "./" << dout_name << "/output.txt." << procParams.rank;
fstream fout(ss.str().c_str(), fstream::out);
double* p = getSolutionPerProcess();
fout << "[" << endl;
for (int j = 0; j < procCoords.y_cells_num; j++){
for (int i = 0; i < procCoords.x_cells_num; i++){
// std::numeric_limits<double>::max_digits10 - is a c++11 feature
// std::numeric_limits<double>::max_digits10 == 17
fout << "{"
<< "\"x\":" << std::setprecision(17) << X1 + (procCoords.x_cell_pos + i) * hx
<< ",\"y\":" << std::setprecision(17) << Y1 + (procCoords.y_cell_pos + j) * hy
<< ",\"u\":" << std::setprecision(17) << p[j * procCoords.x_cells_num + i];
if (i == procCoords.x_cells_num -1 and j == procCoords.y_cells_num -1)
fout << "}" << endl;
else
fout << "}," << endl;
}
}
fout << "]" << endl;
fout.close();
}
// ==================================================================================================================================================
// ComputeGridFragmentation
// ==================================================================================================================================================
void ComputeGridFragmentation (const ProcParams& procParams, int& x_proc_num, int& y_proc_num){
x_proc_num = std::ceil(std::sqrt(procParams.size));
for (; procParams.size % x_proc_num != 0; x_proc_num--)
;
y_proc_num = procParams.size / x_proc_num;
}