Skip to content

Commit 550593f

Browse files
committed
test: add branch 1 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 a08a9e4 commit 550593f

File tree

4 files changed

+76
-0
lines changed

4 files changed

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

0 commit comments

Comments
 (0)