-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathSparseMatrix.cs
More file actions
623 lines (503 loc) · 17.6 KB
/
SparseMatrix.cs
File metadata and controls
623 lines (503 loc) · 17.6 KB
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
namespace CSparse.Complex
{
using CSparse.Properties;
using CSparse.Storage;
using System;
using System.Diagnostics;
using System.Numerics;
/// <inheritdoc />
[DebuggerDisplay("SparseMatrix {RowCount}x{ColumnCount}-Complex {NonZerosCount}-NonZero")]
[Serializable]
public class SparseMatrix : CompressedColumnStorage<Complex>
{
/// <summary>
/// Initializes a new instance of the <see cref="SparseMatrix"/> class.
/// </summary>
public SparseMatrix(int rowCount, int columnCount)
: base(rowCount, columnCount)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="SparseMatrix"/> class.
/// </summary>
public SparseMatrix(int rowCount, int columnCount, int valueCount)
: base(rowCount, columnCount, valueCount)
{
}
/// <summary>
/// Initializes a new instance of the SparseMatrix class.
/// </summary>
public SparseMatrix(int rowCount, int columnCount, Complex[] values, int[] rowIndices, int[] columnPointers)
: base(rowCount, columnCount, values, rowIndices, columnPointers)
{
}
#region Public functions
/// <inheritdoc />
public override int DropZeros(double tolerance = 0.0)
{
Func<int, int, Complex, bool> func;
if (tolerance <= 0.0)
{
func = (i, j, aij) =>
{
return (aij != 0.0);
};
}
else
{
func = (i, j, aij) =>
{
return (aij.Magnitude > tolerance);
};
}
return Keep(func);
}
/// <inheritdoc />
public override int Keep(Func<int, int, Complex, bool> func)
{
int i, j, nz = 0;
for (j = 0; j < columns; j++)
{
i = ColumnPointers[j];
// Record new location of col j.
ColumnPointers[j] = nz;
for (; i < ColumnPointers[j + 1]; i++)
{
if (func(RowIndices[i], j, Values[i]))
{
// Keep A(i,j).
Values[nz] = Values[i];
RowIndices[nz] = RowIndices[i];
nz++;
}
}
}
// Record new nonzero count.
ColumnPointers[columns] = nz;
if (AutoTrimStorage)
{
// Remove extra space.
Resize(0);
}
return nz;
}
/// <inheritdoc />
public override double L1Norm()
{
double sum, norm = 0.0;
for (int j = 0; j < columns; j++)
{
sum = 0.0;
for (int i = ColumnPointers[j]; i < ColumnPointers[j + 1]; i++)
{
sum += Math.Abs(Values[i].Magnitude);
}
norm = Math.Max(norm, sum);
}
return norm;
}
/// <inheritdoc />
public override double InfinityNorm()
{
var work = new double[rows];
for (int j = 0; j < columns; j++)
{
for (int i = ColumnPointers[j]; i < ColumnPointers[j + 1]; i++)
{
work[RowIndices[i]] += Math.Abs(Values[i].Magnitude);
}
}
double norm = 0.0;
for (int j = 0; j < rows; j++)
{
norm = Math.Max(norm, work[j]);
}
return norm;
}
/// <inheritdoc />
public override double FrobeniusNorm()
{
int nz = NonZerosCount;
double sum, norm = 0.0;
for (int i = 0; i < nz; i++)
{
sum = Complex.Abs(Values[i]);
norm += sum * sum;
}
return Math.Sqrt(norm);
}
#endregion
#region Linear Algebra (Vector)
/// <inheritdoc />
public override void Multiply(ReadOnlySpan<Complex> x, Span<Complex> y)
{
var ax = Values;
var ap = ColumnPointers;
var ai = RowIndices;
// Clear y.
for (int i = 0; i < rows; i++)
{
y[i] = 0.0;
}
int end;
Complex xj;
for (int j = 0; j < columns; j++)
{
end = ap[j + 1];
xj = x[j];
// Loop over the rows
for (int k = ap[j]; k < end; k++)
{
y[ai[k]] += xj * ax[k];
}
}
}
/// <inheritdoc />
public override void Multiply(Complex alpha, ReadOnlySpan<Complex> x, Complex beta, Span<Complex> y)
{
var ax = Values;
var ap = ColumnPointers;
var ai = RowIndices;
// Scale y by beta
for (int j = 0; j < rows; j++)
{
y[j] = beta * y[j];
}
int end;
Complex xi;
for (int i = 0; i < columns; i++)
{
xi = alpha * x[i];
end = ap[i + 1];
for (int k = ap[i]; k < end; k++)
{
y[ai[k]] += ax[k] * xi;
}
}
}
/// <inheritdoc />
public override void TransposeMultiply(ReadOnlySpan<Complex> x, Span<Complex> y)
{
var ax = Values;
var ap = ColumnPointers;
var ai = RowIndices;
Complex yi;
for (int i = 0; i < columns; i++)
{
yi = 0.0;
// Compute the inner product of row i with vector x
for (int k = ap[i]; k < ap[i + 1]; k++)
{
yi += ax[k] * x[ai[k]];
}
// Store result in y(i)
y[i] = yi;
}
}
/// <inheritdoc />
public override void TransposeMultiply(Complex alpha, ReadOnlySpan<Complex> x, Complex beta, Span<Complex> y)
{
var ax = Values;
var ap = ColumnPointers;
var ai = RowIndices;
Complex yi;
int end, start = ap[0];
for (int i = 0; i < columns; i++)
{
end = ap[i + 1];
yi = beta * y[i];
for (int k = start; k < end; k++)
{
yi += alpha * ax[k] * x[ai[k]];
}
y[i] = yi;
start = end;
}
}
#endregion
#region Linear Algebra (Matrix)
/// <summary>
/// Transpose this matrix and store the result in given matrix.
/// </summary>
/// <remarks>
/// By default transposition of a complex matrix will include complex conjugation of its
/// values. Set <paramref name="storage"/> to <c>true</c>, to transpose on storage level
/// (meaning, the storage is converted from CSC to CSR).
/// </remarks>
public override void Transpose(CompressedColumnStorage<Complex> result, bool storage)
{
if (storage)
{
base.Transpose(result, storage);
return;
}
int i, j, p;
var cx = result.Values;
var cp = result.ColumnPointers;
var ci = result.RowIndices;
int[] w = new int[rows];
for (p = 0; p < ColumnPointers[columns]; p++)
{
// Row counts.
w[RowIndices[p]]++;
}
// Row pointers.
Helper.CumulativeSum(cp, w, rows);
for (i = 0; i < columns; i++)
{
for (p = ColumnPointers[i]; p < ColumnPointers[i + 1]; p++)
{
j = w[RowIndices[p]]++;
// Place A(i,j) as entry C(j,i)
ci[j] = i;
cx[j] = Complex.Conjugate(Values[p]);
}
}
}
/// <inheritdoc />
public override void Add(Complex alpha, Complex beta, CompressedColumnStorage<Complex> other,
CompressedColumnStorage<Complex> result)
{
if (other == null)
{
throw new ArgumentNullException(nameof(other));
}
if (result == null)
{
throw new ArgumentNullException(nameof(result));
}
int p, j, nz = 0;
int m = rows;
int n = columns;
// check inputs
if (m != other.RowCount || n != other.ColumnCount)
{
throw new ArgumentException(Resources.MatrixDimensions, nameof(other));
}
// Workspace
var w = new int[m];
var x = new Complex[m];
// Allocate result: (anz + bnz) is an upper bound
var ci = result.ColumnPointers;
var cj = result.RowIndices;
var cx = result.Values;
for (j = 0; j < n; j++)
{
ci[j] = nz; // column j of C starts here
nz = Scatter(j, alpha, w, x, j + 1, result, nz); // alpha*A(:,j)
nz = other.Scatter(j, beta, w, x, j + 1, result, nz); // beta*B(:,j)
for (p = ci[j]; p < nz; p++)
{
cx[p] = x[cj[p]];
}
}
// Finalize the last column
ci[n] = nz;
if (AutoTrimStorage)
{
// Remove extra space.
result.Resize(0);
}
Helper.SortIndices(result);
}
/// <inheritdoc />
public override void Multiply(CompressedColumnStorage<Complex> other, CompressedColumnStorage<Complex> result)
{
if (other == null)
{
throw new ArgumentNullException(nameof(other));
}
if (result == null)
{
throw new ArgumentNullException(nameof(result));
}
int p, j, nz = 0;
int[] cp, ci;
Complex[] cx;
int m = rows;
int n = other.ColumnCount;
int anz = NonZerosCount;
int bnz = other.NonZerosCount;
if (ColumnCount != other.RowCount)
{
throw new ArgumentException(Resources.MatrixDimensions, nameof(other));
}
if ((m > 0 && ColumnCount == 0) || (other.RowCount == 0 && n > 0))
{
throw new Exception(Resources.InvalidDimensions);
}
if (result.RowCount != m || result.ColumnCount != n)
{
throw new ArgumentException(Resources.InvalidDimensions, nameof(result));
}
var bp = other.ColumnPointers;
var bi = other.RowIndices;
var bx = other.Values;
// Workspace
var w = new int[m];
var x = new Complex[m];
cp = result.ColumnPointers;
for (j = 0; j < n; j++)
{
if (nz + m > result.Values.Length)
{
// Might throw out of memory exception.
result.Resize(2 * (result.Values.Length) + m);
}
ci = result.RowIndices;
cx = result.Values; // C.i and C.x may be reallocated
cp[j] = nz; // column j of C starts here
for (p = bp[j]; p < bp[j + 1]; p++)
{
nz = Scatter(bi[p], bx[p], w, x, j + 1, result, nz);
}
for (p = cp[j]; p < nz; p++)
{
cx[p] = x[ci[p]];
}
}
cp[n] = nz; // finalize the last column of C
if (AutoTrimStorage)
{
// Remove extra space.
result.Resize(0);
}
Helper.SortIndices(result);
}
/// <summary>
/// Evaluates whether this matrix is complex Hermitian.
/// </summary>
public override bool IsSymmetric()
{
int n = ColumnCount;
if (RowCount != n)
{
return false;
}
var ax = Values;
var ap = ColumnPointers;
var ai = RowIndices;
for (var i = 0; i < n; i++)
{
int end = ap[i + 1];
for (var j = ap[i]; j < end; j++)
{
if (!ax[j].Equals(Complex.Conjugate(At(i, ai[j]))))
{
return false;
}
}
}
return true;
}
#endregion
/// <inheritdoc />
public override bool Equals(Matrix<Complex> other, double tolerance)
{
var o = other as SparseMatrix;
if (o == null)
{
return false;
}
int nz = NonZerosCount;
if (columns != o.ColumnCount || rows != o.RowCount || nz != o.NonZerosCount)
{
return false;
}
for (int i = 0; i < columns; i++)
{
if (ColumnPointers[i] != o.ColumnPointers[i])
{
return false;
}
}
for (int i = 0; i < nz; i++)
{
if (RowIndices[i] != o.RowIndices[i])
{
return false;
}
if (Math.Abs(Values[i].Real - o.Values[i].Real) > tolerance ||
Math.Abs(Values[i].Imaginary - o.Values[i].Imaginary) > tolerance)
{
return false;
}
}
return true;
}
#region Internal methods
internal override void Cleanup()
{
int i, j, p, q, nnz = 0;
int[] marker = new int[rows];
for (j = 0; j < rows; j++)
{
marker[j] = -1; // Row j not yet seen.
}
for (i = 0; i < columns; i++)
{
q = nnz; // Column i will start at q
for (p = ColumnPointers[i]; p < ColumnPointers[i + 1]; p++)
{
j = RowIndices[p]; // A(i,j) is nonzero
if (marker[j] >= q)
{
Values[marker[j]] += Values[p]; // A(i,j) is a duplicate
}
else
{
marker[j] = nnz; // Record where column j occurs
RowIndices[nnz] = j; // Keep A(i,j)
Values[nnz] = Values[p];
nnz += 1;
}
}
ColumnPointers[i] = q; // Record start of row i
}
ColumnPointers[columns] = nnz;
if (AutoTrimStorage)
{
// Remove extra space from arrays
Resize(0);
}
}
/// <summary>
/// Scatters and sums a sparse vector A(:,j) into a dense vector, x = x + beta * A(:,j).
/// </summary>
/// <param name="j">the column of A to use</param>
/// <param name="beta">scalar multiplied by A(:,j)</param>
/// <param name="w">size m, node i is marked if w[i] = mark</param>
/// <param name="x">size m, not null</param>
/// <param name="mark">mark value of w</param>
/// <param name="mat">pattern of x accumulated in C.i</param>
/// <param name="nz">pattern of x placed in C starting at C.i[nz]</param>
/// <returns>new value of nz, -1 on error</returns>
internal override int Scatter(int j, Complex beta, int[] w, Complex[] x, int mark,
CompressedColumnStorage<Complex> mat, int nz)
{
int i, p;
if (w == null || mat == null) return -1; // check inputs
if (x == null)
{
throw new ArgumentNullException(nameof(x));
}
var cj = mat.RowIndices;
for (p = ColumnPointers[j]; p < ColumnPointers[j + 1]; p++)
{
i = RowIndices[p]; // A(i,j) is nonzero
if (w[i] < mark)
{
w[i] = mark; // i is new entry in column j
x[i] = beta * Values[p]; // x(i) = beta*A(i,j)
cj[nz++] = i; // add i to pattern of C(:,j)
}
else
{
x[i] += beta * Values[p]; // i exists in C(:,j) already
}
}
return nz;
}
#endregion
}
}