Skip to content

Commit 1fbb509

Browse files
committed
Auto-generated commit
1 parent f1ed915 commit 1fbb509

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 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-05-19)
7+
## Unreleased (2025-05-20)
88

99
<section class="features">
1010

@@ -283,6 +283,7 @@
283283

284284
### Bug Fixes
285285

286+
- [`fab9873`](https://github.com/stdlib-js/stdlib/commit/fab9873a907807195f2f6673b5b97f09e383bd69) - address index bug
286287
- [`a4f78ea`](https://github.com/stdlib-js/stdlib/commit/a4f78ea79e24bab68ce4f3381c8bc9fb685bd002) - account for loop tiling when generating list of indices
287288
- [`99be29d`](https://github.com/stdlib-js/stdlib/commit/99be29d87a59460302f43792e0f24b4dbe128dab) - account for loop tiling when generating list of indices
288289
- [`9a1ee35`](https://github.com/stdlib-js/stdlib/commit/9a1ee35193c5c474720c58f34d9584f41108bc5c) - account for loop tiling when generating list of indices
@@ -404,6 +405,9 @@ A total of 15 issues were closed in this release:
404405

405406
<details>
406407

408+
- [`fab9873`](https://github.com/stdlib-js/stdlib/commit/fab9873a907807195f2f6673b5b97f09e383bd69) - **fix:** address index bug _(by Athan Reines)_
409+
- [`c8ed1f9`](https://github.com/stdlib-js/stdlib/commit/c8ed1f99772d36d99cf0d836a506c3c83f58c02c) - **docs:** fix description _(by Athan Reines)_
410+
- [`30e17f4`](https://github.com/stdlib-js/stdlib/commit/30e17f4a8ea63e7cad77946fc946a7c587781bb9) - **docs:** update descriptions _(by Athan Reines)_
407411
- [`a8d1b40`](https://github.com/stdlib-js/stdlib/commit/a8d1b40510aee43e3ce0e6e663ee79f149429390) - **test:** fix require path _(by Athan Reines)_
408412
- [`d002f3a`](https://github.com/stdlib-js/stdlib/commit/d002f3ae7d4f785a0d0d8c4c9f3b383776deea15) - **bench:** fix condition _(by Athan Reines)_
409413
- [`468d6f7`](https://github.com/stdlib-js/stdlib/commit/468d6f7247367a32f73738a0cf7dfda28126eac2) - **bench:** fix assertion _(by Athan Reines)_

base/unary-reduce-subarray/lib/0d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var without = require( '@stdlib/array/base/without' );
2626
// MAIN //
2727

2828
/**
29-
* Performs a reduction over a list of specified dimensions in an input ndarray and assigns results to a provided output ndarray.
29+
* Performs a reduction over an input ndarray and assigns results to a provided output ndarray.
3030
*
3131
* @private
3232
* @param {Function} fcn - reduction function

base/unary-reduce-subarray/lib/0d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var without = require( '@stdlib/array/base/without' );
2626
// MAIN //
2727

2828
/**
29-
* Performs a reduction over a list of specified dimensions in an input ndarray and assigns results to a provided output ndarray.
29+
* Performs a reduction over an input ndarray and assigns results to a provided output ndarray.
3030
*
3131
* @private
3232
* @param {Function} fcn - reduction function

base/unary-reduce-subarray/lib/10d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function unary10d( fcn, arrays, views, strides, isRowMajor, opts ) { // eslint-d
214214
dv6.push( sv[6] - ( S5*sv[5] ) );
215215
dv7.push( sv[7] - ( S6*sv[6] ) );
216216
dv8.push( sv[8] - ( S7*sv[7] ) );
217-
dv8.push( sv[8] - ( S8*sv[8] ) );
217+
dv8.push( sv[9] - ( S8*sv[8] ) );
218218
}
219219
}
220220
// Resolve a list of pointers to the first indexed elements in the respective ndarrays:

base/unary-reduce-subarray/lib/factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var reduce = require( './main.js' );
2828
// MAIN //
2929

3030
/**
31-
* Return a function for performing a reduction over a list of specified dimensions in an input ndarray and assigning results to a provided output ndarray.
31+
* Returns a function for performing a reduction over a list of specified dimensions in an input ndarray and assigning results to a provided output ndarray.
3232
*
3333
* @param {Function} fcn - reduction function
3434
* @throws {TypeError} first argument must be a function

0 commit comments

Comments
 (0)