Skip to content

Commit e992c2e

Browse files
committed
Auto-generated commit
1 parent 89bc316 commit e992c2e

35 files changed

Lines changed: 375 additions & 180 deletions

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
<details>
3636

37+
- [`7531b27`](https://github.com/stdlib-js/stdlib/commit/7531b27b47a63c889677a4525a6791cb700a3fac) - **test:** change structure of fixtures for `blas/base/strmv` [(#7252)](https://github.com/stdlib-js/stdlib/pull/7252) _(by Shabareesh Shetty)_
3738
- [`a6cc0ea`](https://github.com/stdlib-js/stdlib/commit/a6cc0eaad0bc431fb2c531517697992fff2e6608) - **test:** add test cases for `blas/base/strmv` [(#7164)](https://github.com/stdlib-js/stdlib/pull/7164) _(by Shabareesh Shetty)_
3839
- [`cc34e03`](https://github.com/stdlib-js/stdlib/commit/cc34e0328c78ed7016921e7be6429221ce77c308) - **refactor:** use base assertion utility _(by Athan Reines)_
3940
- [`8a48ebe`](https://github.com/stdlib-js/stdlib/commit/8a48ebe8c17721be56ba39a16bce3b13441fdc57) - **test:** add test cases for `blas/base/strmv` [(#6732)](https://github.com/stdlib-js/stdlib/pull/6732) _(by Shabareesh Shetty)_
Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
{
2+
"order": "column-major",
3+
"uplo": "lower",
24
"trans": "no-transpose",
35
"diag": "non-unit",
4-
"uplo": "lower",
6+
"N": 3,
7+
"A": [ 6.0, 999.0, 0.0, 999.0, 0.0, 5.0, 999.0, 4.0, 999.0, 0.0, 3.0, 999.0, 2.0, 999.0, 1.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 4.0, 0.0 ],
11+
[ 3.0, 5.0, 6.0 ]
12+
],
13+
"LDA": 5,
514
"strideA1": -2,
615
"strideA2": -5,
716
"offsetA": 14,
17+
"x": [ 3.0, 2.0, 1.0 ],
818
"strideX": -1,
919
"offsetX": 2,
10-
"N": 3,
11-
"A": [ 6, 999, 0, 999, 0, 5, 999, 4, 999, 0, 3, 999, 2, 999, 1 ],
12-
"x": [ 3.0, 2.0, 1.0 ],
1320
"x_out": [ 31.0, 10.0, 1.0 ]
1421
}
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"order": "column-major",
3+
"uplo": "lower",
34
"trans": "no-transpose",
45
"diag": "non-unit",
5-
"uplo": "lower",
6-
"strideX": 1,
7-
"offsetA": 0,
8-
"offsetX": 0,
6+
"N": 3,
7+
"A": [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 4.0, 0.0 ],
11+
[ 3.0, 5.0, 6.0 ]
12+
],
913
"LDA": 3,
1014
"strideA1": 1,
1115
"strideA2": 3,
12-
"N": 3,
13-
"A": [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ],
16+
"offsetA": 0,
1417
"x": [ 1.0, 2.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
1520
"x_out": [ 1.0, 10.0, 31.0 ]
1621
}
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"order": "column-major",
3+
"uplo": "lower",
34
"trans": "no-transpose",
45
"diag": "unit",
5-
"uplo": "lower",
6-
"strideX": 1,
7-
"offsetA": 0,
8-
"offsetX": 0,
6+
"N": 3,
7+
"A": [ 1.0, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 1.0, 0.0 ],
11+
[ 2.0, 1.0, 1.0 ]
12+
],
913
"LDA": 3,
1014
"strideA1": 1,
1115
"strideA2": 3,
12-
"N": 3,
13-
"A": [ 1.0, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
16+
"offsetA": 0,
1417
"x": [ 1.0, 2.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
1520
"x_out": [ 1.0, 4.0, 7.0 ]
1621
}
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"order": "column-major",
3+
"uplo": "lower",
34
"trans": "transpose",
45
"diag": "non-unit",
5-
"uplo": "lower",
6-
"strideX": 1,
7-
"offsetA": 0,
8-
"offsetX": 0,
6+
"N": 3,
7+
"A": [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 4.0, 0.0 ],
11+
[ 3.0, 5.0, 6.0 ]
12+
],
913
"LDA": 3,
1014
"strideA1": 1,
1115
"strideA2": 3,
12-
"N": 3,
13-
"A": [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ],
16+
"offsetA": 0,
1417
"x": [ 1.0, 2.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
1520
"x_out": [ 14.0, 23.0, 18.0 ]
1621
}
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"order": "column-major",
3+
"uplo": "lower",
34
"trans": "transpose",
45
"diag": "unit",
5-
"uplo": "lower",
6-
"strideX": 1,
7-
"offsetA": 0,
8-
"offsetX": 0,
6+
"N": 3,
7+
"A": [ 1.0, 2.0, 3.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 1.0, 0.0 ],
11+
[ 3.0, 2.0, 1.0 ]
12+
],
913
"LDA": 3,
1014
"strideA1": 1,
1115
"strideA2": 3,
12-
"N": 3,
13-
"A": [ 1.0, 2.0, 3.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0 ],
16+
"offsetA": 0,
1417
"x": [ 1.0, 2.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 0,
1520
"x_out": [ 14.0, 8.0, 3.0 ]
1621
}

test/fixtures/column_major_oa.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
{
2+
"order": "column-major",
3+
"uplo": "lower",
24
"trans": "no-transpose",
35
"diag": "non-unit",
4-
"uplo": "lower",
6+
"N": 3,
7+
"A": [ 999.0, 999.0, 999.0, 999.0, 999.0, 999.0, 999.0, 1.0, 999.0, 2.0, 999.0, 3.0, 999.0, 0.0, 999.0, 4.0, 999.0, 5.0, 999.0, 0.0, 999.0, 0.0, 999.0, 6.0, 999.0, 999.0, 999.0, 999.0, 999.0, 999.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 4.0, 0.0 ],
11+
[ 3.0, 5.0, 6.0 ]
12+
],
13+
"LDA": 6,
514
"strideA1": 2,
615
"strideA2": 6,
716
"offsetA": 7,
17+
"x": [ 1.0, 2.0, 3.0 ],
818
"strideX": 1,
919
"offsetX": 0,
10-
"N": 3,
11-
"A": [ 999, 999, 999, 999, 999, 999, 999, 1, 999, 2, 999, 3, 999, 0, 999, 4, 999, 5, 999, 0, 999, 0, 999, 6, 999, 999, 999, 999, 999, 999 ],
12-
"x": [ 1.0, 2.0, 3.0 ],
1320
"x_out": [ 1.0, 10.0, 31.0 ]
1421
}

test/fixtures/column_major_ox.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"order": "column-major",
3+
"uplo": "lower",
34
"trans": "no-transpose",
45
"diag": "unit",
5-
"uplo": "lower",
6-
"strideX": 1,
7-
"offsetA": 0,
8-
"offsetX": 2,
6+
"N": 3,
7+
"A": [ 1.0, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 1.0, 0.0 ],
11+
[ 2.0, 1.0, 1.0 ]
12+
],
913
"LDA": 3,
1014
"strideA1": 1,
1115
"strideA2": 3,
12-
"N": 3,
13-
"A": [ 1.0, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
16+
"offsetA": 0,
1417
"x": [ 0.0, 0.0, 1.0, 2.0, 3.0 ],
18+
"strideX": 1,
19+
"offsetX": 2,
1520
"x_out": [ 0.0, 0.0, 1.0, 4.0, 7.0 ]
1621
}
Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
{
2+
"order": "column-major",
3+
"uplo": "lower",
24
"trans": "no-transpose",
35
"diag": "non-unit",
4-
"uplo": "lower",
6+
"N": 3,
7+
"A": [ 1.0, 999.0, 2.0, 999.0, 3.0, 0.0, 999.0, 4.0, 999.0, 5.0, 0.0, 999.0, 0.0, 999.0, 6.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 4.0, 0.0 ],
11+
[ 3.0, 5.0, 6.0 ]
12+
],
13+
"LDA": 5,
514
"strideA1": 2,
615
"strideA2": 5,
716
"offsetA": 0,
17+
"x": [ 1.0, 2.0, 3.0 ],
818
"strideX": 1,
919
"offsetX": 0,
10-
"N": 3,
11-
"A": [ 1, 999, 2, 999, 3, 0, 999, 4, 999, 5, 0, 999, 0, 999, 6 ],
12-
"x": [ 1.0, 2.0, 3.0 ],
1320
"x_out": [ 1.0, 10.0, 31.0 ]
1421
}
Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
{
2+
"order": "column-major",
3+
"uplo": "lower",
24
"trans": "no-transpose",
35
"diag": "non-unit",
4-
"uplo": "lower",
6+
"N": 3,
7+
"A": [ 0.0, 999.0, 0.0, 999.0, 6.0, 0.0, 999.0, 4.0, 999.0, 5.0, 1.0, 999.0, 2.0, 999.0, 3.0 ],
8+
"A_mat": [
9+
[ 1.0, 0.0, 0.0 ],
10+
[ 2.0, 4.0, 0.0 ],
11+
[ 3.0, 5.0, 6.0 ]
12+
],
13+
"LDA": 5,
514
"strideA1": 2,
615
"strideA2": -5,
716
"offsetA": 10,
17+
"x": [ 1.0, 2.0, 3.0 ],
818
"strideX": 1,
919
"offsetX": 0,
10-
"N": 3,
11-
"A": [ 0, 999, 0, 999, 6, 0, 999, 4, 999, 5, 1, 999, 2, 999, 3 ],
12-
"x": [ 1.0, 2.0, 3.0 ],
1320
"x_out": [ 1.0, 10.0, 31.0 ]
1421
}

0 commit comments

Comments
 (0)