Skip to content

Commit ecd5cfa

Browse files
committed
Auto-generated commit
1 parent 5052597 commit ecd5cfa

File tree

15 files changed

+19
-770
lines changed

15 files changed

+19
-770
lines changed

CHANGELOG.md

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

528528
<details>
529529

530+
- [`5dde2ff`](https://github.com/stdlib-js/stdlib/commit/5dde2ff115443aa143dd19022e5593e022401920) - **refactor:** use extended BLAS utility _(by Athan Reines)_
530531
- [`5396232`](https://github.com/stdlib-js/stdlib/commit/539623214add7405c45c70f16ef7ab001f5dc0e0) - **refactor:** use base utility _(by Athan Reines)_
531532
- [`24c59ca`](https://github.com/stdlib-js/stdlib/commit/24c59ca8f9c70b81c705f4cd981dfd4816c29137) - **feat:** add `broadcastArrayExceptDimensions` to namespace _(by Athan Reines)_
532533
- [`0afeede`](https://github.com/stdlib-js/stdlib/commit/0afeedeeaff3c0d7f394b79125d633454fa7f9e3) - **feat:** add `unaryAddonDispatch` to namespace _(by Athan Reines)_

base/binary-reduce-strided1d-dispatch/lib/index_of_types.js

Lines changed: 0 additions & 108 deletions
This file was deleted.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ var join = require( '@stdlib/array/base/join' );
5353
var copy = require( '@stdlib/array/base/copy' );
5454
var insertAt = require( '@stdlib/array/base/insert-at' );
5555
var everyBy = require( '@stdlib/array/base/every-by' );
56+
var gindexOfRow = require( '@stdlib/blas/ext/base/gindex-of-row' ).ndarray;
5657
var objectAssign = require( '@stdlib/object/assign' );
5758
var format = require( '@stdlib/string/format' );
5859
var defaults = require( './../../../defaults' );
5960
var DEFAULTS = require( './defaults.json' );
6061
var validate = require( './validate.js' );
61-
var indexOfTypes = require( './index_of_types.js' );
6262

6363

6464
// VARIABLES //
@@ -353,7 +353,7 @@ setReadOnly( BinaryStrided1dDispatch.prototype, 'apply', function apply( x, y )
353353
ydt = dt;
354354
}
355355
// Resolve the lower-level strided function satisfying the input ndarray data types:
356-
i = indexOfTypes( this._table.fcns.length, 2, this._table.types, 2, 1, 0, dtypes2enums( [ xdt, ydt ] ), 1, 0 ); // eslint-disable-line max-len
356+
i = gindexOfRow( this._table.fcns.length, 2, this._table.types, 2, 1, 0, dtypes2enums( [ xdt, ydt ] ), 1, 0 ); // eslint-disable-line max-len
357357
if ( i >= 0 ) {
358358
f = this._table.fcns[ i ];
359359
} else {
@@ -541,7 +541,7 @@ setReadOnly( BinaryStrided1dDispatch.prototype, 'assign', function assign( x, y
541541
ydt = dt;
542542
}
543543
// Resolve the lower-level strided function satisfying the input ndarray data type:
544-
i = indexOfTypes( this._table.fcns.length, 2, this._table.types, 2, 1, 0, dtypes2enums( [ xdt, ydt ] ), 1, 0 ); // eslint-disable-line max-len
544+
i = gindexOfRow( this._table.fcns.length, 2, this._table.types, 2, 1, 0, dtypes2enums( [ xdt, ydt ] ), 1, 0 ); // eslint-disable-line max-len
545545
if ( i >= 0 ) {
546546
f = this._table.fcns[ i ];
547547
} else {

base/nullary-strided1d-dispatch/lib/index_of_types.js

Lines changed: 0 additions & 108 deletions
This file was deleted.

base/nullary-strided1d-dispatch/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ var zeroTo = require( '@stdlib/array/base/zero-to' );
4141
var join = require( '@stdlib/array/base/join' );
4242
var copy = require( '@stdlib/array/base/copy' );
4343
var everyBy = require( '@stdlib/array/base/every-by' );
44+
var gindexOfRow = require( '@stdlib/blas/ext/base/gindex-of-row' ).ndarray;
4445
var objectAssign = require( '@stdlib/object/assign' );
4546
var format = require( '@stdlib/string/format' );
4647
var defaults = require( './defaults.json' );
4748
var validate = require( './validate.js' );
48-
var indexOfTypes = require( './index_of_types.js' );
4949

5050

5151
// MAIN //
@@ -270,7 +270,7 @@ setReadOnly( NullaryStrided1dDispatch.prototype, 'assign', function assign( out
270270
}
271271
// Resolve the lower-level strided function satisfying the output ndarray data type:
272272
dtypes = [ resolveEnum( odt ) ];
273-
i = indexOfTypes( this._table.fcns.length, 1, this._table.types, 1, 1, 0, dtypes, 1, 0 ); // eslint-disable-line max-len
273+
i = gindexOfRow( this._table.fcns.length, 1, this._table.types, 1, 1, 0, dtypes, 1, 0 ); // eslint-disable-line max-len
274274
if ( i >= 0 ) {
275275
f = this._table.fcns[ i ];
276276
} else {

base/unary-reduce-strided1d-dispatch-by/lib/index_of_types.js

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)