Skip to content

Commit 14a5e2e

Browse files
committed
Auto-generated commit
1 parent 505850a commit 14a5e2e

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-15)
7+
## Unreleased (2025-08-18)
88

99
<section class="features">
1010

@@ -566,6 +566,9 @@ A total of 26 issues were closed in this release:
566566

567567
<details>
568568

569+
- [`20ae685`](https://github.com/stdlib-js/stdlib/commit/20ae6858f9bea5a07a619b688dad98a0a77dcfb6) - **docs:** correctly call .ndarray in second example _(by Philipp Burckhardt)_
570+
- [`8cea287`](https://github.com/stdlib-js/stdlib/commit/8cea2870cc30848a616b76259b3274caae387b10) - **docs:** fix return annotation values _(by Philipp Burckhardt)_
571+
- [`e38f6c6`](https://github.com/stdlib-js/stdlib/commit/e38f6c6e0c0bccec552a2346c900e1f7711da7b0) - **test:** add user reference matrix [(#7895)](https://github.com/stdlib-js/stdlib/pull/7895) _(by Shabareesh Shetty)_
569572
- [`1913191`](https://github.com/stdlib-js/stdlib/commit/1913191dea38c0f42f7143747c121db38f1ebc35) - **chore:** fix C lint errors [(#7878)](https://github.com/stdlib-js/stdlib/pull/7878) _(by GeoDaoyu)_
570573
- [`f344466`](https://github.com/stdlib-js/stdlib/commit/f344466c6dcfb8f52d7f3148acaadd52772938da) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
571574
- [`f1ddfef`](https://github.com/stdlib-js/stdlib/commit/f1ddfef59e6460cd9f6505566434c2ed3dafa3df) - **feat:** add `blas/base/gsyr` [(#7738)](https://github.com/stdlib-js/stdlib/pull/7738) _(by Shabareesh Shetty, Athan Reines, stdlib-bot)_

base/ggemm/test/fixtures/column_major_nta_tb.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
"offsetB": 0,
2828
"beta": 1.0,
2929
"C": [ 1.0, 5.0, 2.0, 6.0, 3.0, 7.0, 4.0, 8.0 ],
30+
"C_mat": [
31+
[ 1.0, 2.0, 3.0, 4.0 ],
32+
[ 5.0, 6.0, 7.0, 8.0 ]
33+
],
3034
"ldc": 2,
3135
"strideC1": 1,
3236
"strideC2": 2,

base/sdsdot/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* var y = new Float32Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );
3232
*
3333
* var z = sdsdot( x.length, 0.0, x, 1, y, 1 );
34-
* // returns -12.0
34+
* // returns -5.0
3535
*
3636
* @example
3737
* var Float32Array = require( '@stdlib/array/float32' );
@@ -41,7 +41,7 @@
4141
* var y = new Float32Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );
4242
*
4343
* var z = sdsdot.ndarray( x.length, 0.0, x, 1, 0, y, 1, 0 );
44-
* // returns -12.0
44+
* // returns -5.0
4545
*/
4646

4747
// MODULES //

ext/base/dsort2sh/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* var x = new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] );
4646
* var y = new Float64Array( [ 0.0, 1.0, 2.0, 3.0 ] );
4747
*
48-
* dsort2sh( x.length, 1.0, x, 1, 0, y, 1, 0 );
48+
* dsort2sh.ndarray( x.length, 1.0, x, 1, 0, y, 1, 0 );
4949
*
5050
* console.log( x );
5151
* // => <Float64Array>[ -4.0, -2.0, 1.0, 3.0 ]

ext/base/gsort2sh/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* var x = [ 1.0, -2.0, 3.0, -4.0 ];
4444
* var y = [ 0.0, 1.0, 2.0, 3.0 ];
4545
*
46-
* gsort2sh( x.length, 1.0, x, 1, 0, y, 1, 0 );
46+
* gsort2sh.ndarray( x.length, 1.0, x, 1, 0, y, 1, 0 );
4747
*
4848
* console.log( x );
4949
* // => [ -4.0, -2.0, 1.0, 3.0 ]

0 commit comments

Comments
 (0)