-
Notifications
You must be signed in to change notification settings - Fork 16
/
main.cpp
293 lines (237 loc) · 9.39 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
//@HEADER
// ************************************************************************
//
// HPCCG: Simple Conjugate Gradient Benchmark Code
// Copyright (2006) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// BSD 3-Clause License
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux ([email protected])
//
// ************************************************************************
//@HEADER
// Main routine of a program that reads a sparse matrix, right side
// vector, solution vector and initial guess from a file in HPC
// format. This program then calls the HPCCG conjugate gradient
// solver to solve the problem, and then prints results.
// Calling sequence:
// test_HPCCG linear_system_file
// Routines called:
// read_HPC_row - Reads in linear system
// mytimer - Timing routine (compile with -DWALL to get wall clock
// times
// HPCCG - CG Solver
// compute_residual - Compares HPCCG solution to known solution.
#include <iostream>
using std::cout;
using std::cerr;
using std::endl;
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cassert>
#include <string>
#include <cmath>
#ifdef USING_MPI
#include <mpi.h> // If this routine is compiled with -DUSING_MPI
// then include mpi.h
#include "make_local_matrix.hpp" // Also include this function
#endif
#ifdef USING_OMP
#include <omp.h>
#endif
#include "generate_matrix.hpp"
#include "read_HPC_row.hpp"
#include "mytimer.hpp"
#include "HPC_sparsemv.hpp"
#include "compute_residual.hpp"
#include "HPCCG.hpp"
#include "HPC_Sparse_Matrix.hpp"
#include "dump_matlab_matrix.hpp"
#include "YAML_Element.hpp"
#include "YAML_Doc.hpp"
#undef DEBUG
int main(int argc, char *argv[])
{
HPC_Sparse_Matrix *A;
double *x, *b, *xexact;
double norm, d;
int ierr = 0;
int i, j;
int ione = 1;
double times[7];
double t6 = 0.0;
int nx,ny,nz;
#ifdef USING_MPI
MPI_Init(&argc, &argv);
int size, rank; // Number of MPI processes, My process ID
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
// if (size < 100) cout << "Process "<<rank<<" of "<<size<<" is alive." <<endl;
#else
int size = 1; // Serial case (not using MPI)
int rank = 0;
#endif
#ifdef DEBUG
if (rank==0)
{
int junk = 0;
cout << "Press enter to continue"<< endl;
cin >> junk;
}
MPI_Barrier(MPI_COMM_WORLD);
#endif
if(argc != 2 && argc!=4) {
if (rank==0)
cerr << "Usage:" << endl
<< "Mode 1: " << argv[0] << " nx ny nz" << endl
<< " where nx, ny and nz are the local sub-block dimensions, or" << endl
<< "Mode 2: " << argv[0] << " HPC_data_file " << endl
<< " where HPC_data_file is a globally accessible file containing matrix data." << endl;
exit(1);
}
if (argc==4)
{
nx = atoi(argv[1]);
ny = atoi(argv[2]);
nz = atoi(argv[3]);
generate_matrix(nx, ny, nz, &A, &x, &b, &xexact);
}
else
{
read_HPC_row(argv[1], &A, &x, &b, &xexact);
}
bool dump_matrix = false;
if (dump_matrix && size<=4) dump_matlab_matrix(A, rank);
#ifdef USING_MPI
// Transform matrix indices from global to local values.
// Define number of columns for the local matrix.
t6 = mytimer(); make_local_matrix(A); t6 = mytimer() - t6;
times[6] = t6;
#endif
double t1 = mytimer(); // Initialize it (if needed)
int niters = 0;
double normr = 0.0;
int max_iter = 150;
double tolerance = 0.0; // Set tolerance to zero to make all runs do max_iter iterations
ierr = HPCCG( A, b, x, max_iter, tolerance, niters, normr, times);
if (ierr) cerr << "Error in call to CG: " << ierr << ".\n" << endl;
#ifdef USING_MPI
double t4 = times[4];
double t4min = 0.0;
double t4max = 0.0;
double t4avg = 0.0;
MPI_Allreduce(&t4, &t4min, 1, MPI_DOUBLE, MPI_MIN, MPI_COMM_WORLD);
MPI_Allreduce(&t4, &t4max, 1, MPI_DOUBLE, MPI_MAX, MPI_COMM_WORLD);
MPI_Allreduce(&t4, &t4avg, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD);
t4avg = t4avg/((double) size);
#endif
// initialize YAML doc
if (rank==0) // Only PE 0 needs to compute and report timing results
{
double fniters = niters;
double fnrow = A->total_nrow;
double fnnz = A->total_nnz;
double fnops_ddot = fniters*4*fnrow;
double fnops_waxpby = fniters*6*fnrow;
double fnops_sparsemv = fniters*2*fnnz;
double fnops = fnops_ddot+fnops_waxpby+fnops_sparsemv;
YAML_Doc doc("hpccg", "1.0");
doc.add("Parallelism","");
#ifdef USING_MPI
doc.get("Parallelism")->add("Number of MPI ranks",size);
#else
doc.get("Parallelism")->add("MPI not enabled","");
#endif
#ifdef USING_OMP
int nthreads = 1;
#pragma omp parallel
nthreads = omp_get_num_threads();
doc.get("Parallelism")->add("Number of OpenMP threads",nthreads);
#else
doc.get("Parallelism")->add("OpenMP not enabled","");
#endif
doc.add("Dimensions","");
doc.get("Dimensions")->add("nx",nx);
doc.get("Dimensions")->add("ny",ny);
doc.get("Dimensions")->add("nz",nz);
doc.add("Number of iterations", niters);
doc.add("Final residual", normr);
doc.add("#********** Performance Summary (times in sec) ***********","");
doc.add("Time Summary","");
doc.get("Time Summary")->add("Total ",times[0]);
doc.get("Time Summary")->add("DDOT ",times[1]);
doc.get("Time Summary")->add("WAXPBY ",times[2]);
doc.get("Time Summary")->add("SPARSEMV",times[3]);
doc.add("FLOPS Summary","");
doc.get("FLOPS Summary")->add("Total ",fnops);
doc.get("FLOPS Summary")->add("DDOT ",fnops_ddot);
doc.get("FLOPS Summary")->add("WAXPBY ",fnops_waxpby);
doc.get("FLOPS Summary")->add("SPARSEMV",fnops_sparsemv);
doc.add("MFLOPS Summary","");
doc.get("MFLOPS Summary")->add("Total ",fnops/times[0]/1.0E6);
doc.get("MFLOPS Summary")->add("DDOT ",fnops_ddot/times[1]/1.0E6);
doc.get("MFLOPS Summary")->add("WAXPBY ",fnops_waxpby/times[2]/1.0E6);
doc.get("MFLOPS Summary")->add("SPARSEMV",fnops_sparsemv/(times[3])/1.0E6);
#ifdef USING_MPI
doc.add("DDOT Timing Variations","");
doc.get("DDOT Timing Variations")->add("Min DDOT MPI_Allreduce time",t4min);
doc.get("DDOT Timing Variations")->add("Max DDOT MPI_Allreduce time",t4max);
doc.get("DDOT Timing Variations")->add("Avg DDOT MPI_Allreduce time",t4avg);
double totalSparseMVTime = times[3] + times[5]+ times[6];
doc.add("SPARSEMV OVERHEADS","");
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV MFLOPS W OVERHEAD",fnops_sparsemv/(totalSparseMVTime)/1.0E6);
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV PARALLEL OVERHEAD Time", (times[5]+times[6]));
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV PARALLEL OVERHEAD Pct", (times[5]+times[6])/totalSparseMVTime*100.0);
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV PARALLEL OVERHEAD Setup Time", (times[6]));
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV PARALLEL OVERHEAD Setup Pct", (times[6])/totalSparseMVTime*100.0);
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV PARALLEL OVERHEAD Bdry Exch Time", (times[5]));
doc.get("SPARSEMV OVERHEADS")->add("SPARSEMV PARALLEL OVERHEAD Bdry Exch Pct", (times[5])/totalSparseMVTime*100.0);
#endif
if (rank == 0) { // only PE 0 needs to compute and report timing results
std::string yaml = doc.generateYAML();
cout << yaml;
}
}
// Compute difference between known exact solution and computed solution
// All processors are needed here.
double residual = 0;
// if ((ierr = compute_residual(A->local_nrow, x, xexact, &residual)))
// cerr << "Error in call to compute_residual: " << ierr << ".\n" << endl;
// if (rank==0)
// cout << "Difference between computed and exact = "
// << residual << ".\n" << endl;
// Finish up
#ifdef USING_MPI
MPI_Finalize();
#endif
return 0 ;
}