-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdreadrb.c
347 lines (304 loc) · 10.1 KB
/
dreadrb.c
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
/*! \file
Copyright (c) 2003, The Regents of the University of California, through
Lawrence Berkeley National Laboratory (subject to receipt of any required
approvals from U.S. Dept. of Energy)
All rights reserved.
The source code is distributed under BSD license, see the file License.txt
at the top-level directory.
*/
/*! @file dreadrb.c
* \brief Read a matrix stored in Rutherford-Boeing format
*
* <pre>
* -- Distributed SuperLU routine (version 4.0) --
* Lawrence Berkeley National Lab, Univ. of California Berkeley.
* August 15, 2014
*
* </pre>
*
* Purpose
* =======
*
* Read a DOUBLE PRECISION matrix stored in Rutherford-Boeing format
* as described below.
*
* Line 1 (A72, A8)
* Col. 1 - 72 Title (TITLE)
* Col. 73 - 80 Matrix name / identifier (MTRXID)
*
* Line 2 (I14, 3(1X, I13))
* Col. 1 - 14 Total number of lines excluding header (TOTCRD)
* Col. 16 - 28 Number of lines for pointers (PTRCRD)
* Col. 30 - 42 Number of lines for row (or variable) indices (INDCRD)
* Col. 44 - 56 Number of lines for numerical values (VALCRD)
*
* Line 3 (A3, 11X, 4(1X, I13))
* Col. 1 - 3 Matrix type (see below) (MXTYPE)
* Col. 15 - 28 Compressed Column: Number of rows (NROW)
* Elemental: Largest integer used to index variable (MVAR)
* Col. 30 - 42 Compressed Column: Number of columns (NCOL)
* Elemental: Number of element matrices (NELT)
* Col. 44 - 56 Compressed Column: Number of entries (NNZERO)
* Elemental: Number of variable indeces (NVARIX)
* Col. 58 - 70 Compressed Column: Unused, explicitly zero
* Elemental: Number of elemental matrix entries (NELTVL)
*
* Line 4 (2A16, A20)
* Col. 1 - 16 Fortran format for pointers (PTRFMT)
* Col. 17 - 32 Fortran format for row (or variable) indices (INDFMT)
* Col. 33 - 52 Fortran format for numerical values of coefficient matrix
* (VALFMT)
* (blank in the case of matrix patterns)
*
* The three character type field on line 3 describes the matrix type.
* The following table lists the permitted values for each of the three
* characters. As an example of the type field, RSA denotes that the matrix
* is real, symmetric, and assembled.
*
* First Character:
* R Real matrix
* C Complex matrix
* I integer matrix
* P Pattern only (no numerical values supplied)
* Q Pattern only (numerical values supplied in associated auxiliary value
* file)
*
* Second Character:
* S Symmetric
* U Unsymmetric
* H Hermitian
* Z Skew symmetric
* R Rectangular
*
* Third Character:
* A Compressed column form
* E Elemental form
*
* </pre>
*/
#include <stdio.h>
#include <stdlib.h>
#include "superlu_ddefs.h"
/*! \brief Eat up the rest of the current line */
static int DumpLine(FILE *fp)
{
register int c;
while ((c = fgetc(fp)) != '\n') ;
return 0;
}
static int ParseIntFormat(char *buf, int_t *num, int_t *size)
{
char *tmp;
tmp = buf;
while (*tmp++ != '(') ;
*num = atoi(tmp);
while (*tmp != 'I' && *tmp != 'i') ++tmp;
++tmp;
*size = atoi(tmp);
return 0;
}
static int ParseFloatFormat(char *buf, int_t *num, int_t *size)
{
char *tmp, *period;
tmp = buf;
while (*tmp++ != '(') ;
*num = atoi(tmp); /*sscanf(tmp, "%d", num);*/
while (*tmp != 'E' && *tmp != 'e' && *tmp != 'D' && *tmp != 'd'
&& *tmp != 'F' && *tmp != 'f') {
/* May find kP before nE/nD/nF, like (1P6F13.6). In this case the
num picked up refers to P, which should be skipped. */
if (*tmp=='p' || *tmp=='P') {
++tmp;
*num = atoi(tmp); /*sscanf(tmp, "%d", num);*/
} else {
++tmp;
}
}
++tmp;
period = tmp;
while (*period != '.' && *period != ')') ++period ;
*period = '\0';
*size = atoi(tmp); /*sscanf(tmp, "%2d", size);*/
return 0;
}
static int ReadVector(FILE *fp, int_t n, int_t *where, int_t perline, int_t persize)
{
register int_t i, j, item;
char tmp, buf[100];
i = 0;
while (i < n) {
fgets(buf, 100, fp); /* read a line at a time */
for (j=0; j<perline && i<n; j++) {
tmp = buf[(j+1)*persize]; /* save the char at that place */
buf[(j+1)*persize] = 0; /* null terminate */
item = atoi(&buf[j*persize]);
buf[(j+1)*persize] = tmp; /* recover the char at that place */
where[i++] = item - 1;
}
}
return 0;
}
static int dReadValues(FILE *fp, int_t n, double *destination,
int_t perline, int_t persize)
{
register int_t i, j, k, s;
char tmp, buf[100];
i = 0;
while (i < n) {
fgets(buf, 100, fp); /* read a line at a time */
for (j=0; j<perline && i<n; j++) {
tmp = buf[(j+1)*persize]; /* save the char at that place */
buf[(j+1)*persize] = 0; /* null terminate */
s = j*persize;
for (k = 0; k < persize; ++k) /* No D_ format in C */
if ( buf[s+k] == 'D' || buf[s+k] == 'd' ) buf[s+k] = 'E';
destination[i++] = atof(&buf[s]);
buf[(j+1)*persize] = tmp; /* recover the char at that place */
}
}
return 0;
}
/*! \brief
*
* <pre>
* On input, nonz/nzval/rowind/colptr represents lower part of a symmetric
* matrix. On exit, it represents the full matrix with lower and upper parts.
* </pre>
*/
static void
FormFullA(int_t n, int_t *nonz, double **nzval, int_t **rowind, int_t **colptr)
{
register int_t i, j, k, col, new_nnz;
int_t *t_rowind, *t_colptr, *al_rowind, *al_colptr, *a_rowind, *a_colptr;
int_t *marker;
double *t_val, *al_val, *a_val;
al_rowind = *rowind;
al_colptr = *colptr;
al_val = *nzval;
if ( !(marker = (int_t *) SUPERLU_MALLOC( (n+1) * sizeof(int_t)) ) )
ABORT("SUPERLU_MALLOC fails for marker[]");
if ( !(t_colptr = (int_t *) SUPERLU_MALLOC( (n+1) * sizeof(int_t)) ) )
ABORT("SUPERLU_MALLOC t_colptr[]");
if ( !(t_rowind = (int_t *) SUPERLU_MALLOC( *nonz * sizeof(int_t)) ) )
ABORT("SUPERLU_MALLOC fails for t_rowind[]");
if ( !(t_val = (double*) SUPERLU_MALLOC( *nonz * sizeof(double)) ) )
ABORT("SUPERLU_MALLOC fails for t_val[]");
/* Get counts of each column of T, and set up column pointers */
for (i = 0; i < n; ++i) marker[i] = 0;
for (j = 0; j < n; ++j) {
for (i = al_colptr[j]; i < al_colptr[j+1]; ++i)
++marker[al_rowind[i]];
}
t_colptr[0] = 0;
for (i = 0; i < n; ++i) {
t_colptr[i+1] = t_colptr[i] + marker[i];
marker[i] = t_colptr[i];
}
/* Transpose matrix A to T */
for (j = 0; j < n; ++j)
for (i = al_colptr[j]; i < al_colptr[j+1]; ++i) {
col = al_rowind[i];
t_rowind[marker[col]] = j;
t_val[marker[col]] = al_val[i];
++marker[col];
}
new_nnz = *nonz * 2 - n;
if ( !(a_colptr = (int_t *) SUPERLU_MALLOC( (n+1) * sizeof(int_t)) ) )
ABORT("SUPERLU_MALLOC a_colptr[]");
if ( !(a_rowind = (int_t *) SUPERLU_MALLOC( new_nnz * sizeof(int_t)) ) )
ABORT("SUPERLU_MALLOC fails for a_rowind[]");
if ( !(a_val = (double*) SUPERLU_MALLOC( new_nnz * sizeof(double)) ) )
ABORT("SUPERLU_MALLOC fails for a_val[]");
a_colptr[0] = 0;
k = 0;
for (j = 0; j < n; ++j) {
for (i = t_colptr[j]; i < t_colptr[j+1]; ++i) {
if ( t_rowind[i] != j ) { /* not diagonal */
a_rowind[k] = t_rowind[i];
a_val[k] = t_val[i];
++k;
}
}
for (i = al_colptr[j]; i < al_colptr[j+1]; ++i) {
a_rowind[k] = al_rowind[i];
a_val[k] = al_val[i];
++k;
}
a_colptr[j+1] = k;
}
printf("FormFullA: new_nnz = " IFMT ", k = " IFMT "\n", new_nnz, k);
SUPERLU_FREE(al_val);
SUPERLU_FREE(al_rowind);
SUPERLU_FREE(al_colptr);
SUPERLU_FREE(marker);
SUPERLU_FREE(t_val);
SUPERLU_FREE(t_rowind);
SUPERLU_FREE(t_colptr);
*nzval = a_val;
*rowind = a_rowind;
*colptr = a_colptr;
*nonz = new_nnz;
}
void
dreadrb_dist(int iam, FILE *fp, int_t *nrow, int_t *ncol, int_t *nonz,
double **nzval, int_t **rowind, int_t **colptr)
{
register int_t i, numer_lines = 0;
int_t tmp, colnum, colsize, rownum, rowsize, valnum, valsize;
char buf[100], type[4];
int sym;
/* Line 1 */
fgets(buf, 100, fp);
fputs(buf, stdout);
/* Line 2 */
for (i=0; i<4; i++) {
fscanf(fp, "%14c", buf); buf[14] = 0;
tmp = atoi(buf); /*sscanf(buf, "%d", &tmp);*/
if (i == 3) numer_lines = tmp;
}
DumpLine(fp);
/* Line 3 */
fscanf(fp, "%3c", type);
fscanf(fp, "%11c", buf); /* pad */
type[3] = 0;
#if (DEBUGlevel >= 1)
if ( !iam ) printf("Matrix type %s\n", type);
#endif
fscanf(fp, "%14c", buf); *nrow = atoi(buf);
fscanf(fp, "%14c", buf); *ncol = atoi(buf);
fscanf(fp, "%14c", buf); *nonz = atoi(buf);
fscanf(fp, "%14c", buf); tmp = atoi(buf);
if (tmp != 0)
if ( !iam ) printf("This is not an assembled matrix!\n");
if (*nrow != *ncol)
if ( !iam ) printf("Matrix is not square.\n");
DumpLine(fp);
/* Allocate storage for the three arrays ( nzval, rowind, colptr ) */
dallocateA_dist(*ncol, *nonz, nzval, rowind, colptr);
/* Line 4: format statement */
fscanf(fp, "%16c", buf);
ParseIntFormat(buf, &colnum, &colsize);
fscanf(fp, "%16c", buf);
ParseIntFormat(buf, &rownum, &rowsize);
fscanf(fp, "%20c", buf);
ParseFloatFormat(buf, &valnum, &valsize);
DumpLine(fp);
#if (DEBUGlevel >= 1)
if ( !iam ) {
printf(IFMT " rows, " IFMT " nonzeros\n", *nrow, *nonz);
printf("colnum " IFMT ", colsize " IFMT "\n", colnum, colsize);
printf("rownum " IFMT ", rowsize " IFMT "\n", rownum, rowsize);
printf("valnum " IFMT ", valsize " IFMT "\n", valnum, valsize);
}
#endif
ReadVector(fp, *ncol+1, *colptr, colnum, colsize);
ReadVector(fp, *nonz, *rowind, rownum, rowsize);
if ( numer_lines ) {
dReadValues(fp, *nonz, *nzval, valnum, valsize);
}
sym = (type[1] == 'S' || type[1] == 's');
if ( sym ) {
FormFullA(*ncol, nonz, nzval, rowind, colptr);
}
fclose(fp);
}