Skip to content

Commit 1284a60

Browse files
committed
Auto-generated commit
1 parent 4e8edc2 commit 1284a60

35 files changed

+375
-180
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ A total of 22 issues were closed in this release:
483483

484484
<details>
485485

486+
- [`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)_
486487
- [`a3c291e`](https://github.com/stdlib-js/stdlib/commit/a3c291efac68f24917f22d48f46d0255a4f32d02) - **docs:** change variable naming for `blas/base/scasum` [(#7193)](https://github.com/stdlib-js/stdlib/pull/7193) _(by Shabareesh Shetty, stdlib-bot)_
487488
- [`04c89d1`](https://github.com/stdlib-js/stdlib/commit/04c89d16aca5b3c1a38b8494a82fd1c4bef55139) - **test:** add test cases for `blas/base/dtrmv` [(#7163)](https://github.com/stdlib-js/stdlib/pull/7163) _(by Shabareesh Shetty)_
488489
- [`7457723`](https://github.com/stdlib-js/stdlib/commit/74577238d8a2c72ecd1011dfd54d028034c68531) - **refactor:** rename variable in `blas/ext/base/` [(#7250)](https://github.com/stdlib-js/stdlib/pull/7250) _(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
}
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
}
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)