Skip to content

Commit d56db8f

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

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@
283283

284284
### Bug Fixes
285285

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

406407
<details>
407408

409+
- [`a300862`](https://github.com/stdlib-js/stdlib/commit/a300862d4f05d4d8bd85f1e235db93ad5d35a767) - **fix:** address increment bugs _(by Athan Reines)_
408410
- [`fab9873`](https://github.com/stdlib-js/stdlib/commit/fab9873a907807195f2f6673b5b97f09e383bd69) - **fix:** address index bug _(by Athan Reines)_
409411
- [`c8ed1f9`](https://github.com/stdlib-js/stdlib/commit/c8ed1f99772d36d99cf0d836a506c3c83f58c02c) - **docs:** fix description _(by Athan Reines)_
410412
- [`30e17f4`](https://github.com/stdlib-js/stdlib/commit/30e17f4a8ea63e7cad77946fc946a7c587781bb9) - **docs:** update descriptions _(by Athan Reines)_

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[9] - ( S8*sv[8] ) );
217+
dv9.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/10d_accessors.js

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

0 commit comments

Comments
 (0)