-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathd_sample_hb.cpp
408 lines (378 loc) · 7.85 KB
/
d_sample_hb.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# include <cstdlib>
# include <iostream>
# include <iomanip>
# include <cstring>
# include <ctime>
using namespace std;
# include "slu_ddefs.h"
int main ( );
double *cc_mv ( int m, int n, int ncc, int icc[], int ccc[], double acc[],
double x[] );
void cc_print ( int m, int n, int ncc, int icc[], int ccc[], double acc[],
string title );
void timestamp ( );
//****************************************************************************80
int main ( )
//****************************************************************************80
//
// Purpose:
//
// D_SAMPLE_HB tests the SUPERLU solver with a 5x5 double precision real matrix.
//
// Discussion:
//
// The general (GE) representation of the matrix is:
//
// [ 19 0 21 21 0
// 12 21 0 0 0
// 0 12 16 0 0
// 0 0 0 5 21
// 12 12 0 0 18 ]
//
// The (0-based) compressed column (CC) representation of this matrix is:
//
// I CC A
// -- -- --
// 0 0 19
// 1 12
// 4 12
//
// 1 3 21
// 2 12
// 4 12
//
// 0 6 21
// 2 16
//
// 0 8 21
// 3 5
//
// 3 10 21
// 4 18
//
// * 12 *
//
// The right hand side B and solution X are
//
// # B X
// -- -- ----------
// 0 1 -0.03125
// 1 1 0.0654762
// 2 1 0.0133929
// 3 1 0.0625
// 4 1 0.0327381
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 16 July 2014
//
// Author:
//
// John Burkardt
//
// Reference:
//
// James Demmel, John Gilbert, Xiaoye Li,
// SuperLU Users's Guide.
//
{
SuperMatrix A;
double *acc;
double *b;
double *b2;
SuperMatrix B;
int *ccc;
int i;
int *icc;
int info;
int j;
SuperMatrix L;
int m;
int n;
int nrhs = 1;
int ncc;
superlu_options_t options;
int *perm_c;
int permc_spec;
int *perm_r;
SuperLUStat_t stat;
SuperMatrix U;
timestamp ( );
cout << "\n";
cout << "D_SAMPLE_HB:\n";
cout << " C++ version\n";
cout << " SUPERLU solves a double precision real linear system.\n";
cout << " The matrix is read from a Harwell-Boeing (HB) file.\n";
//
// Read the matrix from a file associated with standard input,
// in Harwell-Boeing format, into compressed column (CC) format.
//
dreadhb ( &m, &n, &ncc, &acc, &icc, &ccc );
//
// Print the matrix.
//
cc_print ( m, n, ncc, icc, ccc, acc, " CC Matrix:" );
//
// Convert the compressed column (CC) matrix into a SuperMatrix A.
//
dCreate_CompCol_Matrix ( &A, m, n, ncc, acc, icc, ccc, SLU_NC, SLU_D, SLU_GE );
//
// Create the right-hand side matrix.
//
b = new double[m];
for ( i = 0; i < m; i++ )
{
b[i] = 1.0;
}
cout << "\n";
cout << " Right hand side:\n";
cout << "\n";
for ( i = 0; i < m; i++ )
{
cout << b[i] << "\n";
}
//
// Create Super Right Hand Side.
//
dCreate_Dense_Matrix ( &B, m, nrhs, b, m, SLU_DN, SLU_D, SLU_GE );
//
// Set space for the permutations.
//
perm_r = new int[m];
perm_c = new int[n];
//
// Set the input options.
//
set_default_options ( &options );
options.ColPerm = NATURAL;
//
// Initialize the statistics variables.
//
StatInit ( &stat );
//
// Solve the linear system.
//
dgssv ( &options, &A, perm_c, perm_r, &L, &U, &B, &stat, &info );
dPrint_CompCol_Matrix ( ( char * ) "A", &A );
dPrint_CompCol_Matrix ( ( char * ) "U", &U );
dPrint_SuperNode_Matrix ( ( char * ) "L", &L );
print_int_vec ( ( char * ) "\nperm_r", m, perm_r );
//
// By some miracle involving addresses,
// the solution has been put into the B vector.
//
cout << "\n";
cout << " Computed solution:\n";
cout << "\n";
for ( i = 0; i < m; i++ )
{
cout << b[i] << "\n";
}
//
// Demonstrate that B is really the solution now.
// Multiply it by the matrix.
//
b2 = cc_mv ( m, n, ncc, icc, ccc, acc, b );
cout << "\n";
cout << " Product A*X:\n";
cout << "\n";
for ( i = 0; i < m; i++ )
{
cout << b2[i] << "\n";
}
//
// Free memory.
//
free ( b );
free ( b2 );
free ( perm_c );
free ( perm_r );
Destroy_SuperMatrix_Store ( &A );
Destroy_SuperMatrix_Store ( &B );
Destroy_SuperNode_Matrix ( &L );
Destroy_CompCol_Matrix ( &U );
StatFree ( &stat );
//
// Terminate.
//
cout << "\n";
cout << "D_SAMPLE_HB:\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
return 0;
}
//****************************************************************************80
double *cc_mv ( int m, int n, int ncc, int icc[], int ccc[], double acc[],
double x[] )
//****************************************************************************80
//
// Purpose:
//
// CC_MV multiplies a CC matrix by a vector
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 15 July 2014
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Iain Duff, Roger Grimes, John Lewis,
// User's Guide for the Harwell-Boeing Sparse Matrix Collection,
// October 1992
//
// Parameters:
//
// Input, int M, the number of rows.
//
// Input, int N, the number of columns.
//
// Input, int NCC, the number of CC values.
//
// Input, int ICC[NCC], the CC rows.
//
// Input, int CCC[N+1], the compressed CC columns
//
// Input, double ACC[NCC], the CC values.
//
// Input, double X[N], the vector to be multiplied.
//
// Output, double CC_MV[M], the product A*X.
//
{
double *b;
int i;
int j;
int k;
b = new double[m];
for ( i = 0; i < m; i++ )
{
b[i] = 0.0;
}
for ( j = 0; j < n; j++ )
{
for ( k = ccc[j]; k < ccc[j+1]; k++ )
{
i = icc[k];
b[i] = b[i] + acc[k] * x[j];
}
}
return b;
}
//****************************************************************************80
void cc_print ( int m, int n, int ncc, int icc[], int ccc[], double acc[],
string title )
//****************************************************************************80
//
// Purpose:
//
// CC_PRINT prints a sparse matrix in CC format.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 15 July 2014
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int M, the number of rows in the matrix.
//
// Input, int N, the number of columns in the matrix.
//
// Input, int NCC, the number of CC elements.
//
// Input, int ICC[NCC], the CC rows.
//
// Input, int CCC[N+1], the compressed CC columns.
//
// Input, double ACC[NCC], the CC values.
//
// Input, string TITLE, a title.
//
{
int i;
int j;
int jnext;
int k;
cout << "\n";
cout << title << "\n";
cout << " # I J A\n";
cout << " ---- ---- ---- --------------\n";
cout << "\n";
j = 0;
jnext = ccc[1];
for ( k = 0; k < ncc; k++ )
{
i = icc[k];
while ( jnext <= k )
{
j = j + 1;
jnext = ccc[j+1];
}
cout << setw(4) << k << " "
<< setw(4) << i << " "
<< setw(4) << j << " "
<< setw(16) << acc[k] << "\n";
}
return;
}
//****************************************************************************80
void timestamp ( )
//****************************************************************************80
//
// Purpose:
//
// TIMESTAMP prints the current YMDHMS date as a time stamp.
//
// Example:
//
// 31 May 2001 09:45:54 AM
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 08 July 2009
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// None
//
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct std::tm *tm_ptr;
size_t len;
std::time_t now;
now = std::time ( NULL );
tm_ptr = std::localtime ( &now );
len = std::strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm_ptr );
std::cout << time_buffer << "\n";
return;
# undef TIME_SIZE
}