Skip to content

Commit 73793db

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 3ba563f commit 73793db

4 files changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"order": "column-major",
3+
"uplo": "upper",
4+
"trans": "no-transpose",
5+
"diag": "non-unit",
6+
"N": 3,
7+
"A": [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 4.0, 4.0, 0.0, 0.0, 3.0, 3.0, 5.0, 5.0, 6.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
10+
[ 0.0, 0.0, 4.0, 4.0, 5.0, 5.0 ],
11+
[ 0.0, 0.0, 0.0, 0.0, 6.0, 6.0 ]
12+
],
13+
"LDA": 3,
14+
"strideA1": 1,
15+
"strideA2": 3,
16+
"offsetA": 0,
17+
"x": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
20+
"x_out": [ -0.25, 0.0, -0.125, 0.0, 0.5, 0.0 ]
21+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"order": "column-major",
3+
"uplo": "upper",
4+
"trans": "no-transpose",
5+
"diag": "unit",
6+
"N": 3,
7+
"A": [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 4.0, 4.0, 0.0, 0.0, 3.0, 3.0, 5.0, 5.0, 6.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
10+
[ 0.0, 0.0, 4.0, 4.0, 5.0, 5.0 ],
11+
[ 0.0, 0.0, 0.0, 0.0, 6.0, 6.0 ]
12+
],
13+
"LDA": 3,
14+
"strideA1": 1,
15+
"strideA2": 3,
16+
"offsetA": 0,
17+
"x": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
20+
"x_out": [ -59.0, 35.0, 2.0, -28.0, 3.0, 3.0 ]
21+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"order": "row-major",
3+
"uplo": "lower",
4+
"trans": "transpose",
5+
"diag": "non-unit",
6+
"N": 3,
7+
"A": [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 4.0, 4.0, 0.0, 0.0, 3.0, 3.0, 5.0, 5.0, 6.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ],
10+
[ 2.0, 2.0, 4.0, 4.0, 0.0, 0.0 ],
11+
[ 3.0, 3.0, 5.0, 5.0, 6.0, 6.0 ]
12+
],
13+
"LDA": 3,
14+
"strideA1": 3,
15+
"strideA2": 1,
16+
"offsetA": 0,
17+
"x": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
20+
"x_out": [ -0.25, 0.0, -0.125, 0.0, 0.5, 0.0 ]
21+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"order": "row-major",
3+
"uplo": "lower",
4+
"trans": "transpose",
5+
"diag": "unit",
6+
"N": 3,
7+
"A": [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 4.0, 4.0, 0.0, 0.0, 3.0, 3.0, 5.0, 5.0, 6.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ],
10+
[ 2.0, 2.0, 4.0, 4.0, 0.0, 0.0 ],
11+
[ 3.0, 3.0, 5.0, 5.0, 6.0, 6.0 ]
12+
],
13+
"LDA": 3,
14+
"strideA1": 3,
15+
"strideA2": 1,
16+
"offsetA": 0,
17+
"x": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
20+
"x_out": [ -59.0, 35.0, 2.0, -28.0, 3.0, 3.0 ]
21+
}

0 commit comments

Comments
 (0)