Skip to content

Commit 39e2b24

Browse files
committed
Auto-generated commit
1 parent 0b81ce9 commit 39e2b24

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 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-12-11)
7+
## Unreleased (2025-12-12)
88

99
<section class="features">
1010

@@ -478,6 +478,7 @@
478478

479479
### Bug Fixes
480480

481+
- [`01ab290`](https://github.com/stdlib-js/stdlib/commit/01ab29036205f4a0507133c1a4a7fd429bb7bd9e) - rename import in `ndarray/base/unary-strided1d-dispatch` to resolve conflict [(#9010)](https://github.com/stdlib-js/stdlib/pull/9010)
481482
- [`83a01e7`](https://github.com/stdlib-js/stdlib/commit/83a01e723e9037a2c402c1e60b54bc678ef27078) - enforce mostly-safe casting
482483
- [`e33ce98`](https://github.com/stdlib-js/stdlib/commit/e33ce98738a5fb62a81d17dbcd8b1b2606c6f208) - enforce mostly-safe casting
483484
- [`97fb507`](https://github.com/stdlib-js/stdlib/commit/97fb507addda8bf32be3a3f376d387e528672149) - handle mostly safe casts and refactor loop generation
@@ -649,6 +650,7 @@ A total of 36 issues were closed in this release:
649650

650651
<details>
651652

653+
- [`01ab290`](https://github.com/stdlib-js/stdlib/commit/01ab29036205f4a0507133c1a4a7fd429bb7bd9e) - **fix:** rename import in `ndarray/base/unary-strided1d-dispatch` to resolve conflict [(#9010)](https://github.com/stdlib-js/stdlib/pull/9010) _(by Muhammad Haris)_
652654
- [`53d181b`](https://github.com/stdlib-js/stdlib/commit/53d181b5581a10bee3ebe924a54f137544d309e4) - **chore:** minor clean-up _(by Philipp Burckhardt)_
653655
- [`f375981`](https://github.com/stdlib-js/stdlib/commit/f375981dd59f1ce6aa575e48bafa0e7998a7efdd) - **feat:** add `ndarray/base/to-flippedud` [(#8849)](https://github.com/stdlib-js/stdlib/pull/8849) _(by Muhammad Haris, Athan Reines)_
654656
- [`1080085`](https://github.com/stdlib-js/stdlib/commit/1080085cbf97a2d217339594fda596759a49386b) - **feat:** add `ndarray/base/to-flippedlr` [(#8848)](https://github.com/stdlib-js/stdlib/pull/8848) _(by Muhammad Haris, Athan Reines)_

base/unary-reduce-strided1d-dispatch/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var getShape = require( './../../../shape' ); // note: non-base accessor is inte
4444
var ndims = require( './../../../ndims' );
4545
var getDType = require( './../../../base/dtype' );
4646
var getOrder = require( './../../../base/order' );
47-
var assign = require( './../../../base/assign' );
47+
var ndarrayAssign = require( './../../../base/assign' );
4848
var baseEmpty = require( './../../../base/empty' );
4949
var empty = require( './../../../empty' );
5050
var indicesComplement = require( '@stdlib/array/base/indices-complement' );
@@ -296,7 +296,7 @@ setReadOnly( UnaryStrided1dDispatch.prototype, 'apply', function apply( x ) {
296296
if ( xdt !== dt ) {
297297
// TODO: replace the following logic with a call to `ndarray/base/(?maybe-)(cast|convert|copy)` or similar utility
298298
tmp = baseEmpty( dt, shx, getOrder( x ) );
299-
assign( [ x, tmp ] );
299+
ndarrayAssign( [ x, tmp ] );
300300
args[ 0 ] = tmp;
301301
xdt = dt;
302302
}
@@ -447,7 +447,7 @@ setReadOnly( UnaryStrided1dDispatch.prototype, 'assign', function assign( x ) {
447447
if ( xdt !== dt ) {
448448
// TODO: replace the following logic with a call to `ndarray/base/(?maybe-)(cast|convert|copy)` or similar utility
449449
tmp = baseEmpty( dt, getShape( x ), getOrder( x ) );
450-
assign( [ x, tmp ] );
450+
ndarrayAssign( [ x, tmp ] );
451451
args[ 0 ] = tmp;
452452
xdt = dt;
453453
}

0 commit comments

Comments
 (0)