Skip to content

Commit c7538ce

Browse files
committed
test: offset for A fixtures added
--- 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 a69da97 commit c7538ce

2 files changed

Lines changed: 58 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"order": "column-major",
3+
"uplo": "lower",
4+
"N": 3,
5+
"K": 1,
6+
"alpha": [ 0.5, 0.5 ],
7+
"A": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, -2.0, 3.0, 0.0, 4.0, -4.0, 5.0, 0.0, 0.0, 0.0 ],
8+
"A_compact": [
9+
[ 1.0, 0.0, 3.0, 0.0, 5.0, 0.0 ],
10+
[ 2.0, -2.0, 4.0, -4.0, 0.0, 0.0 ]
11+
],
12+
"A_mat": [
13+
[ 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 ],
14+
[ 2.0, -2.0, 3.0, 0.0, 0.0, 0.0 ],
15+
[ 0.0, 0.0, 4.0, -4.0, 5.0, 0.0 ]
16+
],
17+
"lda": 2,
18+
"strideA1": 1,
19+
"strideA2": 2,
20+
"offsetA": 9,
21+
"x": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
22+
"strideX": 1,
23+
"offsetX": 0,
24+
"beta": [ 0.5, -0.5 ],
25+
"y": [ 3.0, 3.0, 2.0, 2.0, 1.0, 1.0 ],
26+
"strideY": 1,
27+
"offsetY": 0,
28+
"y_out": [ -1.0, 5.0, -8.0, 20.0, 9.0, 23.0 ]
29+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"order": "row-major",
3+
"uplo": "lower",
4+
"N": 3,
5+
"K": 1,
6+
"alpha": [ 0.5, 0.5 ],
7+
"A": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, -2.0, 3.0, 0.0, 4.0, -4.0, 5.0, 0.0 ],
8+
"A_compact": [
9+
[ 0.0, 0.0, 1.0, 0.0 ],
10+
[ 2.0, -2.0, 3.0, 0.0 ],
11+
[ 4.0, -4.0, 5.0, 0.0 ]
12+
],
13+
"A_mat": [
14+
[ 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 ],
15+
[ 2.0, -2.0, 3.0, 0.0, 0.0, 0.0 ],
16+
[ 0.0, 0.0, 4.0, -4.0, 5.0, 0.0 ]
17+
],
18+
"strideA1": 2,
19+
"strideA2": 1,
20+
"offsetA": 6,
21+
"x": [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ],
22+
"strideX": 1,
23+
"offsetX": 0,
24+
"beta": [ 0.5, -0.5 ],
25+
"y": [ 3.0, 3.0, 2.0, 2.0, 1.0, 1.0 ],
26+
"strideY": 1,
27+
"offsetY": 0,
28+
"y_out": [ -1.0, 5.0, -8.0, 20.0, 9.0, 23.0 ]
29+
}

0 commit comments

Comments
 (0)