Skip to content

Commit 0be3828

Browse files
committed
test: fix test fixture
1 parent 8018ce3 commit 0be3828

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"order": "column-major",
33
"trans": "transpose",
4-
"M": 2,
5-
"N": 4,
4+
"M": 4,
5+
"N": 2,
66
"alpha": 0.5,
77
"beta": 0.5,
8-
"lda": 2,
8+
"lda": 4,
99
"A": [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ],
1010
"x": [ 1.0, 2.0, 3.0, 4.0 ],
1111
"y": [ 1.0, 2.0 ],
1212
"strideA1": 1,
13-
"strideA2": 2,
13+
"strideA2": 4,
1414
"offsetA": 0,
1515
"strideX": 1,
1616
"offsetX": 0,
1717
"strideY": 1,
1818
"offsetY": 0,
19-
"y_out": [ 3.0, 6.5 ]
19+
"y_out": [ 15.5, 36.0 ]
2020
}

0 commit comments

Comments
 (0)