-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtest-helpers.ts
464 lines (426 loc) · 16.5 KB
/
test-helpers.ts
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
/* This is a conversion from BLAS to Typescript/Javascript
Copyright (C) 2018 Jacob K.F. Bogers info@mail.jacob-bogers.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { Complex, FortranArr, fpArray, Matrix, errWrongArg } from '../src/lib/f_func';
const { max, min } = Math;
const { isInteger } = Number;
const { isArray } = Array;
type ArrayElt = { key: string | number; val: any };
// type guard
export function isComplex(a: any): a is Complex {
return (
a !== null &&
typeof a === 'object' &&
're' in a &&
'im' in a &&
typeof a['re'] === 'number' &&
typeof a['im'] === 'number'
);
}
export function approximatelyWithPrec(prec: number): (act: number | Complex, exp: number) => void {
return (act: number | Complex, exp: number) => approximately(act, exp, prec);
}
export function approximately(act: number | Complex, exp: number | Complex, preca = 1e-9) {
const prec = -Math.log10(preca);
if (isComplex(act)) {
if (isComplex(exp)) {
expect(act.re).toBeCloseTo(exp.re, prec); //, 'real part numbers are NOT close');
expect(act.im).toBeCloseTo(exp.im, prec);
//assert.approximately(act.im, exp.im, prec, 'numbers are NOT close');
return;
}
throw new Error('cannot compare complex type with non complex type');
}
switch (true) {
case isNaN(act):
expect(exp).toBeNaN();
break;
case isFinite(act):
//console.log(act, exp, prec);
expect(act).toBeCloseTo(<number>exp, prec);
//assert.approximately(act, <number>exp, prec, 'numbers are NOT close');
break;
case !isFinite(act):
expect(act).toBe(exp);
//assert.equal(act, exp);
break;
default:
throw new Error(`Icompatible values ${act}, ${exp}`);
}
}
export function real(data?: number | number[] | Complex | Complex[]): number[] | number {
if (typeof data === 'object' && 're' in data) {
return data.re;
}
if (typeof data === 'number') {
return data;
}
if (data instanceof Array) {
//console.log('its an array');
const copy: number[] = new Array<number>(data.length);
for (let i = 0; i < data.length; i++) {
copy[i] = real(data[i]) as any;
}
return copy;
}
return data as any;
}
export function fortranArrComplex32(
...rest: (number | number[] | Complex | Complex[])[]
): (offset?: number) => FortranArr {
const collect = demuxComplex(rest as any);
let i: Float32Array | undefined;
if (collect.imags !== undefined) {
i = new Float32Array(collect.imags);
}
return mimicFArray(new Float32Array(collect.reals), i);
}
export function fortranArrComplex64(
...rest: (number | number[] | Complex | Complex[])[]
): (offset?: number) => FortranArr {
const collect = demuxComplex(rest as any);
let i: Float64Array | undefined;
if (collect.imags !== undefined) {
i = new Float64Array(collect.imags);
}
return mimicFArray(new Float64Array(collect.reals), i);
}
function demuxComplex(...rest: (Complex | number)[]): { reals: number[]; imags?: number[] } {
const c = flatten(rest);
const collect: { reals: number[]; imags?: number[] } = { reals: [], imags: [] };
c.reduce((prev, v) => {
if (typeof v === 'number') {
prev.reals.push(v);
return prev;
}
const re = 're' in v ? v.re : undefined;
const im = 'im' in v ? v.im : undefined;
if (re !== undefined) {
prev.reals.push(re);
}
if (im !== undefined && prev.imags) {
prev.imags.push(im);
}
return prev;
}, collect);
//only reals?
if (collect.reals.length > 0) {
if (collect.imags && collect.imags.length === 0) {
delete collect.imags;
}
}
return collect;
}
export function fortranMatrixComplex32(
...rest: (number | number[] | Complex | Complex[])[]
): (nrRows: number, nrCols: number, rowBase?: number, colBase?: number) => Matrix {
const collect = demuxComplex(rest as any);
let i: Float32Array | undefined;
if (collect.imags !== undefined) {
i = new Float32Array(collect.imags);
}
return mimicFMatrix(new Float32Array(collect.reals), i);
}
export function fortranMatrixComplex64(
...rest: (number | number[] | Complex | Complex[])[]
): (nrRows: number, nrCols: number, rowBase?: number, colBase?: number) => Matrix {
const collect = demuxComplex(rest as any);
let i: Float64Array | undefined;
if (collect.imags !== undefined) {
i = new Float64Array(collect.imags);
}
return mimicFMatrix(new Float64Array(collect.reals), i);
}
export function mimicFMatrix(r: fpArray, i?: fpArray) {
return function c1(lda: number, nrCols: number, rowBase = 1, colBase = 1): Readonly<Matrix> {
// check rows
if (lda < 0) {
throw new Error(errWrongArg('nrRows', 'is Negative'));
}
if (!isInteger(lda)) {
throw new Error(errWrongArg('nrRows', 'is a NaN'));
}
if (!isInteger(rowBase)) {
throw new Error(errWrongArg('rowBase', 'is a NaN'));
}
// check columns
if (nrCols < 0) {
throw new Error(errWrongArg('nrCols', 'is Negative'));
}
if (!isInteger(nrCols)) {
throw new Error(errWrongArg('nrCols', 'is a NaN'));
}
if (!isInteger(colBase)) {
throw new Error(errWrongArg('colBase', 'is a NaN'));
}
return Object.freeze<Matrix>({
rowBase,
colBase,
nrCols,
nrRows: lda,
r,
i,
coord(col: number) {
const tb = (col - colBase) * lda;
return (row: number) => tb + (row - rowBase);
},
// colOf: (col) => (col - colBase) * nrRows,
colOfEx: (col) => (col - colBase) * lda - rowBase,
setCol(col: number, rowStart: number, rowEnd: number, value = 0): void {
// dont use colOf (avoid extra function)
const coords = (col - this.colBase) * lda - rowBase;
this.r.fill(value, coords + rowStart, coords + rowEnd + 1);
if (this.i) {
this.i.fill(value, coords + rowStart, coords + rowEnd + 1);
}
},
upperBand(k: number = lda - 1) {
return bandifyMatrix('u', k, this);
},
lowerBand(k: number = lda - 1) {
return bandifyMatrix('l', k, this);
},
packedUpper(k: number = lda - 1) {
return packedBandi_fied_Matrix('u', k, this);
},
packedLower(k: number = lda - 1) {
return packedBandi_fied_Matrix('l', k, this);
},
toArr(): Complex[] | number[] {
const rc: any[] = new Array(lda * nrCols).fill(0);
for (let j = 1; j <= nrCols; j++) {
const coor = (j - 1) * this.nrRows - 1;
for (let i = 1; i <= lda; i++) {
rc[coor + i] =
this.i === undefined ? this.r[coor + i] : { re: this.r[coor + i], im: this.i[coor + i] };
}
}
return rc;
},
slice(rowStart: number, rowEnd: number, colStart: number, colEnd: number): Matrix {
const _nrRows = rowEnd - rowStart + 1;
const _nrCols = colEnd - colStart + 1;
const re = new Float64Array(_nrRows * _nrCols);
let im: Float64Array | undefined;
//
if (this.i) {
im = new Float64Array(_nrRows * _nrCols);
}
//
for (let j = colStart; j <= colEnd; j++) {
// x x | x x
const targetBase = (j - colStart) * _nrRows;
const coorJ = this.colOfEx(j);
for (let i = rowStart; i <= rowEnd; i++) {
// console.log(j, coorJ + i, base + i, r[coorJ + i]);
re[targetBase + (i - rowStart)] = r[coorJ + i];
if (this.i && im) {
im[targetBase + (i - rowStart)] = this.i[coorJ + i];
}
}
}
return mimicFMatrix(re, im)(_nrRows, _nrCols);
},
slice_used_for_test(rowStart: number, rowEnd: number, colStart: number, colEnd: number): Matrix {
const _nrRows = rowEnd - rowStart + 1;
const _nrCols = colEnd - colStart + 1;
const re = new Float64Array(_nrRows * _nrCols);
let im: Float64Array | undefined;
//
if (this.i) {
im = new Float64Array(_nrRows * _nrCols);
}
//
for (let j = colStart; j <= colEnd; j++) {
const base = (j - colStart) * _nrRows - 1;
const coorJ = this.colOfEx(j);
for (let i = rowStart; i <= rowEnd; i++) {
// console.log(j, coorJ + i, base + i, r[coorJ + i]);
re[base + i] = r[coorJ + i];
if (this.i && im) {
im[base + (i - rowStart)] = this.i[coorJ + i];
}
}
}
return mimicFMatrix(re, im)(_nrRows, _nrCols);
},
setLower(value = 0) {
const rc = this.r.slice();
const ic = this.i ? this.i.slice() : undefined;
for (let y = 1; y < nrCols; y++) {
const coor = this.colOfEx(y);
rc.fill(value, coor + y + 1, coor + lda + 1);
if (ic) {
ic.fill(value, coor + y + 1, coor + lda + 1);
}
}
return mimicFMatrix(rc, ic)(this.nrRows, this.nrCols, this.rowBase, this.colBase);
},
setUpper(value = 0) {
const rc = this.r.slice();
const ic = this.i ? this.i.slice() : undefined;
for (let y = 2; y <= nrCols; y++) {
const coor = this.colOfEx(y);
rc.fill(value, coor + 1, coor + min(y, lda));
if (ic) {
ic.fill(value, coor + 1, coor + min(y, lda));
}
}
return mimicFMatrix(rc, ic)(this.nrRows, this.nrCols, this.rowBase, this.colBase);
},
real() {
const reC = this.r.slice();
return mimicFMatrix(reC)(this.nrRows, this.nrCols);
},
imaginary() {
let imC: fpArray;
if (!this.i) {
imC = new Float64Array(this.nrRows * this.nrCols);
imC.fill(0);
} else {
imC = this.i.slice(); //copy
}
return mimicFMatrix(imC)(this.nrRows, this.nrCols);
},
});
};
}
function bandifyMatrix(uplo: 'u' | 'l', k: number, A: Matrix): Matrix {
const rowSize = k + 1;
const colSize = A.nrCols;
const createArr = A.r instanceof Float64Array ? Float64Array : Float32Array;
const re = new createArr(rowSize * colSize);
let im: fpArray | undefined;
if (A.i) {
im = new createArr(rowSize * colSize);
}
for (let j = 1; j <= colSize; j++) {
const m = uplo === 'u' ? k + 1 - j : 1 - j;
const coorJ = A.colOfEx(j);
const base = (j - 1) * rowSize - 1;
const start = uplo === 'u' ? max(1, j - k) : j;
const stop = uplo === 'u' ? j : min(colSize, j + k);
for (let i = start; i <= stop; i++) {
re[base + m + i] = A.r[coorJ + i];
if (im && A.i) {
im[base + m + i] = A.i[coorJ + i];
}
}
}
return mimicFMatrix(re, im)(rowSize, colSize);
}
function packedBandi_fied_Matrix(uplo: 'u' | 'l', k: number, A: Matrix): FortranArr {
const packedSize = (-(k + 1) * k) / 2 + A.nrCols * (k + 1);
const colSize = A.nrCols;
const createArr = A.r instanceof Float64Array ? Float64Array : Float32Array;
const re = new createArr(packedSize);
let im: fpArray | undefined;
if (A.i) {
im = new createArr(packedSize);
}
let cursor = 0;
for (let j = 1; j <= colSize; j++) {
//const m = uplo === 'u' ? k + 1 - j : 1 - j;
const coorJ = A.colOfEx(j);
//const base = (j - 1) * rowSize - 1;
const start = uplo === 'u' ? max(1, j - k) : j;
const stop = uplo === 'u' ? j : min(colSize, j + k);
for (let i = start; i <= stop; i++) {
re[cursor] = A.r[coorJ + i];
//re[base + m + i] = A.r[coorJ + i];
if (im && A.i) {
im[cursor] = A.i[coorJ + i];
//im[base + m + i] = A.i[coorJ + i];
}
cursor++;
}
}
return mimicFArray(re, im)();
}
export function imaginary(data?: number | number[] | Complex | Complex[]): number[] | number {
if (typeof data === 'object' && 'im' in data) {
//console.log(data.im);
return data.im;
}
if (typeof data === 'number') {
return 0;
}
if (data instanceof Array) {
//console.log('its an array');
const copy: number[] = new Array<number>(data.length);
for (let i = 0; i < data.length; i++) {
copy[i] = imaginary(data[i]) as any;
}
return copy;
}
return data as any;
}
export function coerceToArray(o: any): { key: string | number; val: any }[] {
if (o === null || o === undefined) {
return []; //throw new TypeError('Illegal argument excepton: input needs to NOT be "null" or "undefined".');
}
if (typeof o === 'number') {
return [{ key: 0, val: o }] as any;
}
if (isArray(o)) {
return o.map((x, idx) => ({ key: idx, val: x } as any));
}
if (typeof o === 'string') {
return o.split('').map((x, idx) => ({ key: idx, val: x } as any));
}
if (typeof o === 'object') {
const names = Object.getOwnPropertyNames(o);
if (names.length === 0) {
return []; //throw new Error('Input argument is an Object with no properties');
}
return names.map((name) => ({ key: name, val: o[name] })) as any;
}
throw new Error('unreachable code');
}
function iter<T>(wantMap = true) {
return function n(xx: T): { (fn: (x: any, idx?: number | string) => any): any | any[] } {
const fx: ArrayElt[] = coerceToArray(xx) as any;
return function k(fn: (x: any, idx?: number | string) => any): any | any[] {
return wantMap ? fx.map((o) => fn(o.val, o.key)) : fx.forEach((o) => fn(o.val, o.key));
};
};
}
export const map = iter();
export const each = iter(false);
export function numberPrecision(prec = 6) {
const runner = arrayrify(convert);
function convert(x?: number | any): number {
// try to loop over the object
if (typeof x === 'object' && x !== null) {
for (const key in x) {
//recursion
x[key] = runner(x[key]);
}
return x;
}
// this is a number!!
if (typeof x === 'number') {
return Number.parseFloat(x.toPrecision(prec));
}
//dont change the object, whatever it is
return x;
}
return runner;
}
export function arrayrify<T, R>(fn: (x: T, ...rest: any[]) => R) {
return function n(x: T | T[], ...rest: any[]): R | R[] {
const fp = Array.isArray(x) ? x : [x];
const result = fp.map((p) => fn(p, ...rest));
return result.length === 1 ? result[0] : result.length === 0 ? (undefined as any) : result;
};
}