Skip to content

Commit 2f56e6c

Browse files
committed
test: add complex access pattern 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 ce663a6 commit 2f56e6c

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"order": "column-major",
3+
"uplo": "upper",
4+
"trans": "no-transpose",
5+
"diag": "non-unit",
6+
"N": 3,
7+
"strideAP": -3,
8+
"offsetAP": 15,
9+
"AP": [ 6.0, 6.0, 999.0, 999.0, 999.0, 999.0, 5.0, 5.0, 999.0, 999.0, 999.0, 999.0, 3.0, 3.0, 999.0, 999.0, 999.0, 999.0, 4.0, 4.0, 999.0, 999.0, 999.0, 999.0, 2.0, 2.0, 999.0, 999.0, 999.0, 999.0, 1.0, 1.0 ],
10+
"A_mat": [
11+
[ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
12+
[ 0.0, 0.0, 4.0, 4.0, 5.0, 5.0 ],
13+
[ 0.0, 0.0, 0.0, 0.0, 6.0, 6.0 ]
14+
],
15+
"x": [ 3.0, 3.0, 2.0, 2.0, 1.0, 1.0 ],
16+
"strideX": -1,
17+
"offsetX": 2,
18+
"x_out": [ 0.0, 36.0, 0.0, 46.0, 0.0, 28.0 ]
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"order": "row-major",
3+
"uplo": "upper",
4+
"trans": "no-transpose",
5+
"diag": "non-unit",
6+
"N": 3,
7+
"strideAP": -3,
8+
"offsetAP": 15,
9+
"AP": [ 6.0, 6.0, 999.0, 999.0, 999.0, 999.0, 5.0, 5.0, 999.0, 999.0, 999.0, 999.0, 4.0, 4.0, 999.0, 999.0, 999.0, 999.0, 3.0, 3.0, 999.0, 999.0, 999.0, 999.0, 2.0, 2.0, 999.0, 999.0, 999.0, 999.0, 1.0, 1.0 ],
10+
"A_mat": [
11+
[ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
12+
[ 0.0, 0.0, 4.0, 4.0, 5.0, 5.0 ],
13+
[ 0.0, 0.0, 0.0, 0.0, 6.0, 6.0 ]
14+
],
15+
"x": [ 3.0, 3.0, 2.0, 2.0, 1.0, 1.0 ],
16+
"strideX": -1,
17+
"offsetX": 2,
18+
"x_out": [ 0.0, 36.0, 0.0, 46.0, 0.0, 28.0 ]
19+
}

0 commit comments

Comments
 (0)