Skip to content

Commit 8954e1d

Browse files
committed
chore: add documented test fixtures
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 303c143 commit 8954e1d

24 files changed

+138
-8
lines changed

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_complex_access_pattern.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
"KL": 1,
1515
"KU": 1,
1616
"A": [ 0.0, 999.0, 999.0, 7.0, 5.0, 999.0, 6.0, 4.0, 2.0, 999.0, 3.0, 1.0, 999.0, 999.0, 0.0 ],
17+
"A_mat": [
18+
[ 1.0, 3.0, 0.0 ],
19+
[ 2.0, 4.0, 6.0 ],
20+
[ 0.0, 5.0, 7.0 ]
21+
],
1722
"x": [ 1.0, 2.0, 3.0 ],
1823
"y": [ 1.0, 2.0, 3.0 ],
1924
"y_out": [ 17.0, 14.0, 4.0 ]

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_nt.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,23 @@
88
"alpha": 0.5,
99
"beta": 0.5,
1010
"lda": 3,
11-
"A": [ 0.0, 3.0, 5.0, 7.0, 2.0, 4.0, 6.0, 8.0, 0.0 ],
12-
"x": [ 1.0, 2.0 , 3.0 ],
11+
"A": [
12+
0.0,
13+
3.0,
14+
5.0,
15+
7.0,
16+
2.0,
17+
4.0,
18+
6.0,
19+
8.0,
20+
0.0
21+
],
22+
"A_mat": [
23+
[ 3.0, 7.0, 0.0 ],
24+
[ 5.0, 2.0, 6.0 ],
25+
[ 0.0, 4.0, 8.0 ]
26+
],
27+
"x": [ 1.0, 2.0, 3.0 ],
1328
"y": [ 1.0, 2.0, 3.0 ],
1429
"strideA1": 1,
1530
"strideA2": 3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_oa.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"alpha": 0.5,
88
"beta": 0.5,
99
"A": [ 999.0, 999.0, 999.0, 999.0, 999.0, 999.0, 999.0, 0.0, 1.0, 999.0, 3.0, 2.0, 999.0, 4.0, 999.0, 6.0, 5.0, 999.0, 7.0, 999.0, 0.0 ],
10+
"A_mat": [
11+
[ 1.0, 3.0, 0.0 ],
12+
[ 2.0, 4.0, 6.0 ],
13+
[ 0.0, 5.0, 7.0 ]
14+
],
1015
"x": [ 1.0, 2.0, 3.0 ],
1116
"y": [ 1.0, 2.0, 3.0 ],
1217
"strideA1": 3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_sa1_sa2.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"alpha": 0.5,
88
"beta": 0.5,
99
"A": [ 0.0, 999.0, 999.0, 1.0, 999.0, 3.0, 2.0, 999.0, 4.0, 999.0, 6.0, 5.0, 999.0, 7.0, 0.0 ],
10+
"A_mat": [
11+
[ 1.0, 3.0, 0.0 ],
12+
[ 2.0, 4.0, 6.0 ],
13+
[ 0.0, 5.0, 7.0 ]
14+
],
1015
"x": [ 1.0, 2.0, 3.0 ],
1116
"y": [ 1.0, 2.0, 3.0 ],
1217
"strideA1": 3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_sa1_sa2n.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"alpha": 0.5,
88
"beta": 0.5,
99
"A": [ 0.0, 999.0, 999.0, 999.0, 999.0, 6.0, 999.0, 999.0, 7.0, 999.0, 3.0, 999.0, 999.0, 4.0, 999.0, 999.0, 5.0, 999.0, 1.0, 999.0, 999.0, 2.0, 0.0 ],
10+
"A_mat": [
11+
[ 1.0, 3.0, 0.0 ],
12+
[ 2.0, 4.0, 6.0 ],
13+
[ 0.0, 5.0, 7.0 ]
14+
],
1015
"x": [ 1.0, 2.0, 3.0 ],
1116
"y": [ 1.0, 2.0, 3.0 ],
1217
"strideA1": 3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_sa1n_sa2.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"alpha": 0.5,
88
"beta": 0.5,
99
"A": [ 0.0, 999.0, 999.0, 2.0, 999.0, 999.0, 1.0, 999.0, 999.0, 999.0, 999.0, 999.0, 999.0, 5.0, 999.0, 999.0, 4.0, 999.0, 999.0, 3.0, 999.0, 999.0, 999.0, 999.0, 999.0, 999.0, 7.0, 999.0, 999.0, 6.0, 999.0, 0.0 ],
10+
"A_mat": [
11+
[ 1.0, 3.0, 0.0 ],
12+
[ 2.0, 4.0, 6.0 ],
13+
[ 0.0, 5.0, 7.0 ]
14+
],
1015
"x": [ 1.0, 2.0, 3.0 ],
1116
"y": [ 1.0, 2.0, 3.0 ],
1217
"strideA1": -3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_sa1n_sa2n.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"alpha": 0.5,
88
"beta": 0.5,
99
"A": [ 0.0, 999.0, 999.0, 999.0, 999.0, 999.0, 7.0, 999.0, 5.0, 6.0, 999.0, 4.0, 999.0, 2.0, 3.0, 999.0, 1.0, 999.0, 999.0, 999.0, 0.0 ],
10+
"A_mat": [
11+
[ 1.0, 3.0, 0.0 ],
12+
[ 2.0, 4.0, 6.0 ],
13+
[ 0.0, 5.0, 7.0 ]
14+
],
1015
"x": [ 1.0, 2.0, 3.0 ],
1116
"y": [ 1.0, 2.0, 3.0 ],
1217
"strideA1": -3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_t.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@
99
"beta": 0.5,
1010
"lda": 3,
1111
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
12+
"A_mat": [
13+
[ 1.0, 3.0, 0.0 ],
14+
[ 2.0, 4.0, 6.0 ],
15+
[ 0.0, 5.0, 7.0 ]
16+
],
1217
"x": [ 1.0, 2.0, 3.0 ],
1318
"y": [ 1.0, 2.0, 3.0 ],
14-
"strideA1": 1,
15-
"strideA2": 3,
19+
"strideA1": 3,
20+
"strideA2": 1,
1621
"offsetA": 0,
1722
"strideX": 1,
1823
"offsetX": 0,
1924
"strideY": 1,
2025
"offsetY": 0,
21-
"y_out": [ 3.0, 14.0, 18.0 ]
26+
"y_out": [ 4.0, 15.0, 17.0 ]
2227
}

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_xnyn.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"beta": 0.5,
1010
"lda": 3,
1111
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
12+
"A_mat": [
13+
[ 1.0, 3.0, 0.0 ],
14+
[ 2.0, 4.0, 6.0 ],
15+
[ 0.0, 5.0, 7.0 ]
16+
],
1217
"x": [ 1.0, 2.0, 3.0 ],
1318
"y": [ 1.0, 2.0, 3.0 ],
1419
"strideA1": 3,

lib/node_modules/@stdlib/blas/base/dgbmv/test/fixtures/column_major_xnyp.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"beta": 0.5,
1010
"lda": 3,
1111
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
12+
"A_mat": [
13+
[ 1.0, 3.0, 0.0 ],
14+
[ 2.0, 4.0, 6.0 ],
15+
[ 0.0, 5.0, 7.0 ]
16+
],
1217
"x": [ 3.0, 2.0, 1.0 ],
1318
"y": [ 1.0, 2.0, 3.0 ],
1419
"strideA1": 1,

0 commit comments

Comments
 (0)