Skip to content

Commit b7d8582

Browse files
committed
chore: add initial test cases
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: passed ---
1 parent a57ea79 commit b7d8582

File tree

8 files changed

+642
-512
lines changed

8 files changed

+642
-512
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"trans": "no-transpose",
3+
"strideA1": -2,
4+
"strideA2": -5,
5+
"offsetA": 14,
6+
"strideX": -1,
7+
"offsetX": 2,
8+
"strideY": -1,
9+
"offsetY": 2,
10+
"M": 3,
11+
"N": 3,
12+
"KL": 1,
13+
"KU": 1,
14+
"alpha": 0.5,
15+
"beta": 0.5,
16+
"A": [ 0, 1, 2, 3, 4, 5, 6, 7, 0 ],
17+
"x": [ 3.0, 2.0, 1.0 ],
18+
"y": [ 1.0, 2.0, 3.0 ],
19+
"y_out": [ 4.0, 12.0, 11.0 ]
20+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"order": "column-major",
3+
"trans": "no-transpose",
4+
"M": 3,
5+
"N": 3,
6+
"KL": 1,
7+
"KU": 1,
8+
"alpha": 0.5,
9+
"beta": 0.5,
10+
"lda": 3,
11+
"A": [ 0.0, 3.0, 5.0, 7.0, 2.0, 4.0, 6.0, 8.0, 0.0 ],
12+
"x": [ 1.0, 2.0 , 3.0 ],
13+
"y": [ 1.0, 2.0, 3.0 ],
14+
"strideA1": 1,
15+
"strideA2": 3,
16+
"offsetA": 0,
17+
"strideX": 1,
18+
"offsetX": 0,
19+
"strideY": 1,
20+
"offsetY": 0,
21+
"y_out": [ 9, 14.5, 17.5 ]
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"order": "column-major",
3+
"trans": "transpose",
4+
"M": 3,
5+
"N": 3,
6+
"KL": 1,
7+
"KU": 1,
8+
"alpha": 0.5,
9+
"beta": 0.5,
10+
"lda": 3,
11+
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
12+
"x": [ 1.0, 2.0, 3.0 ],
13+
"y": [ 1.0, 2.0, 3.0 ],
14+
"strideA1": 1,
15+
"strideA2": 3,
16+
"offsetA": 0,
17+
"strideX": 1,
18+
"offsetX": 0,
19+
"strideY": 1,
20+
"offsetY": 0,
21+
"y_out": [ 3.0, 14.0, 18.0 ]
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"order": "row-major",
3+
"trans": "no-transpose",
4+
"M": 3,
5+
"N": 3,
6+
"KL": 1,
7+
"KU": 1,
8+
"alpha": 0.5,
9+
"beta": 0.5,
10+
"lda": 3,
11+
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
12+
"x": [ 1.0, 2.0, 3.0 ],
13+
"y": [ 1.0, 2.0, 3.0 ],
14+
"strideA1": 3,
15+
"strideA2": 1,
16+
"offsetA": 0,
17+
"strideX": 1,
18+
"offsetX": 0,
19+
"strideY": 1,
20+
"offsetY": 0,
21+
"y_out": [ 3.0, 14.0, 18.0 ]
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"order": "row-major",
3+
"trans": "transpose",
4+
"M": 3,
5+
"N": 3,
6+
"KL": 1,
7+
"KU": 1,
8+
"alpha": 0.5,
9+
"beta": 0.5,
10+
"lda": 3,
11+
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
12+
"x": [ 1.0, 2.0, 3.0 ],
13+
"y": [ 1.0, 2.0, 3.0 ],
14+
"strideA1": 3,
15+
"strideA2": 1,
16+
"offsetA": 0,
17+
"strideX": 1,
18+
"offsetX": 0,
19+
"strideY": 1,
20+
"offsetY": 0,
21+
"y_out": [ 4.0, 15.0, 17.0 ]
22+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"order": "row-major",
3+
"trans": "no-transpose",
4+
"M": 3,
5+
"N": 3,
6+
"alpha": 0.5,
7+
"beta": 0.5,
8+
"lda": 3,
9+
"A": [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ],
10+
"x": [ 1.0, 2.0, 3.0 ],
11+
"y": [ 1.0, 2.0, 3.0 ],
12+
"strideA1": 3,
13+
"strideA2": 1,
14+
"offsetA": 0,
15+
"strideX": -1,
16+
"offsetX": 1,
17+
"strideY": -1,
18+
"offsetY": 3,
19+
"y_out": [ 12.0, 9.5, 7.0, 4.5 ]
20+
}

0 commit comments

Comments
 (0)