Skip to content

Commit ffa6fe4

Browse files
committed
test: add branch 4 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 40cd688 commit ffa6fe4

6 files changed

Lines changed: 110 additions & 4 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"order": "column-major",
3+
"uplo": "lower",
4+
"trans": "transpose",
5+
"diag": "non-unit",
6+
"N": 3,
7+
"K": 1,
8+
"A": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0, 0.0, 0.0 ],
9+
"A_compact": [
10+
[ 1.0, 1.0, 3.0, 3.0, 5.0, 5.0 ],
11+
[ 2.0, 2.0, 4.0, 4.0, 0.0, 0.0 ]
12+
],
13+
"A_mat": [
14+
[ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ],
15+
[ 2.0, 2.0, 3.0, 3.0, 0.0, 0.0 ],
16+
[ 0.0, 0.0, 4.0, 4.0, 5.0, 5.0 ]
17+
],
18+
"LDA": 2,
19+
"strideA1": 1,
20+
"strideA2": 2,
21+
"offsetA": 0,
22+
"x": [ 0.0, 10.0, 0.0, 36.0, 0.0, 30.0 ],
23+
"strideX": 1,
24+
"offsetX": 0,
25+
"x_out": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ]
26+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"order": "column-major",
3+
"uplo": "lower",
4+
"trans": "transpose",
5+
"diag": "unit",
6+
"N": 3,
7+
"K": 1,
8+
"A": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0, 0.0, 0.0 ],
9+
"A_compact": [
10+
[ 1.0, 1.0, 3.0, 3.0, 5.0, 5.0 ],
11+
[ 2.0, 2.0, 4.0, 4.0, 0.0, 0.0 ]
12+
],
13+
"A_mat": [
14+
[ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ],
15+
[ 2.0, 2.0, 3.0, 3.0, 0.0, 0.0 ],
16+
[ 0.0, 0.0, 4.0, 4.0, 5.0, 5.0 ]
17+
],
18+
"LDA": 2,
19+
"strideA1": 1,
20+
"strideA2": 2,
21+
"offsetA": 0,
22+
"x": [ 1.0, 9.0, 2.0, 26.0, 3.0, 3.0 ],
23+
"strideX": 1,
24+
"offsetX": 0,
25+
"x_out": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ]
26+
}

lib/node_modules/@stdlib/blas/base/ctbsv/test/fixtures/row_major_l_nt_nu.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"order": "row-major",
33
"uplo": "lower",
44
"trans": "no-transpose",
5-
"diag": "unit",
5+
"diag": "non-unit",
66
"N": 3,
77
"K": 1,
88
"A": [ 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0 ],
@@ -20,7 +20,7 @@
2020
"strideA1": 2,
2121
"strideA2": 1,
2222
"offsetA": 0,
23-
"x": [ 1.0, 1.0, 2.0, 6.0, 3.0, 19.0 ],
23+
"x": [ 0.0, 2.0, 0.0, 16.0, 0.0, 46.0 ],
2424
"strideX": 1,
2525
"offsetX": 0,
2626
"x_out": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ]

lib/node_modules/@stdlib/blas/base/ctbsv/test/fixtures/row_major_l_nt_u.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"order": "row-major",
33
"uplo": "lower",
44
"trans": "no-transpose",
5-
"diag": "non-unit",
5+
"diag": "unit",
66
"N": 3,
77
"K": 1,
88
"A": [ 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0 ],
@@ -20,7 +20,7 @@
2020
"strideA1": 2,
2121
"strideA2": 1,
2222
"offsetA": 0,
23-
"x": [ 0.0, 2.0, 0.0, 16.0, 0.0, 46.0 ],
23+
"x": [ 1.0, 1.0, 2.0, 6.0, 3.0, 19.0 ],
2424
"strideX": 1,
2525
"offsetX": 0,
2626
"x_out": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ]
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"order": "row-major",
3+
"uplo": "upper",
4+
"trans": "no-transpose",
5+
"diag": "non-unit",
6+
"N": 3,
7+
"K": 1,
8+
"A": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0, 0.0, 0.0 ],
9+
"A_compact": [
10+
[ 1.0, 1.0, 2.0, 2.0 ],
11+
[ 3.0, 3.0, 4.0, 4.0 ],
12+
[ 5.0, 5.0, 0.0, 0.0 ]
13+
],
14+
"A_mat": [
15+
[ 1.0, 1.0, 2.0, 2.0, 0.0, 0.0 ],
16+
[ 0.0, 0.0, 3.0, 3.0, 4.0, 4.0 ],
17+
[ 0.0, 0.0, 0.0, 0.0, 5.0, 5.0 ]
18+
],
19+
"LDA": 2,
20+
"strideA1": 2,
21+
"strideA2": 1,
22+
"offsetA": 0,
23+
"x": [ 0.0, 10.0, 0.0, 36.0, 0.0, 30.0 ],
24+
"strideX": 1,
25+
"offsetX": 0,
26+
"x_out": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ]
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"order": "row-major",
3+
"uplo": "upper",
4+
"trans": "no-transpose",
5+
"diag": "unit",
6+
"N": 3,
7+
"K": 1,
8+
"A": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0, 0.0, 0.0 ],
9+
"A_compact": [
10+
[ 1.0, 1.0, 2.0, 2.0 ],
11+
[ 3.0, 3.0, 4.0, 4.0 ],
12+
[ 5.0, 5.0, 0.0, 0.0 ]
13+
],
14+
"A_mat": [
15+
[ 1.0, 1.0, 2.0, 2.0, 0.0, 0.0 ],
16+
[ 0.0, 0.0, 3.0, 3.0, 4.0, 4.0 ],
17+
[ 0.0, 0.0, 0.0, 0.0, 5.0, 5.0 ]
18+
],
19+
"LDA": 2,
20+
"strideA1": 2,
21+
"strideA2": 1,
22+
"offsetA": 0,
23+
"x": [ 1.0, 9.0, 2.0, 26.0, 3.0, 3.0 ],
24+
"strideX": 1,
25+
"offsetX": 0,
26+
"x_out": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ]
27+
}

0 commit comments

Comments
 (0)