Skip to content

Commit 40a63c3

Browse files
committed
Auto-generated commit
1 parent dbfa032 commit 40a63c3

19 files changed

+39
-55
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-09-22)
7+
## Unreleased (2025-09-23)
88

99
<section class="features">
1010

@@ -431,6 +431,7 @@
431431

432432
### Bug Fixes
433433

434+
- [`f84c1a6`](https://github.com/stdlib-js/stdlib/commit/f84c1a6ecbaf68b7dfbeef4576111bc277885d1a) - remove unused parameter
434435
- [`2848c77`](https://github.com/stdlib-js/stdlib/commit/2848c77bb0cf8fd2fc78fe72095a1aad2e545a36) - improve type specificity, remove unreachable path, and fix docs
435436
- [`5b491c9`](https://github.com/stdlib-js/stdlib/commit/5b491c98f454c2413c23eaa901543bef9e3642f2) - allow enums to be nonpositive integers
436437
- [`a278663`](https://github.com/stdlib-js/stdlib/commit/a2786634547c68e950444c8a16d522d2ab79e335) - ensure \"generic\" data type objects are considered valid
@@ -592,6 +593,7 @@ A total of 24 issues were closed in this release:
592593

593594
<details>
594595

596+
- [`f84c1a6`](https://github.com/stdlib-js/stdlib/commit/f84c1a6ecbaf68b7dfbeef4576111bc277885d1a) - **fix:** remove unused parameter _(by Athan Reines)_
595597
- [`2848c77`](https://github.com/stdlib-js/stdlib/commit/2848c77bb0cf8fd2fc78fe72095a1aad2e545a36) - **fix:** improve type specificity, remove unreachable path, and fix docs _(by Athan Reines)_
596598
- [`b5a916e`](https://github.com/stdlib-js/stdlib/commit/b5a916e413d8658977ab2383ec6fe411f90c557d) - **feat:** update `ndarray/base` TypeScript declarations [(#8127)](https://github.com/stdlib-js/stdlib/pull/8127) _(by stdlib-bot)_
597599
- [`5c3691e`](https://github.com/stdlib-js/stdlib/commit/5c3691efad0d8f75effc471424caa0473cb264ac) - **test:** add tests to `ndarray/every` for complete test coverage [(#8124)](https://github.com/stdlib-js/stdlib/pull/8124) _(by Muhammad Haris, Athan Reines)_

base/unary-reduce-subarray-by/lib/10d_blocked.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -123,12 +122,12 @@ var wrap = require( './callback_wrapper.js' );
123122
* var slx = [ 12, 12, 12, 12, 12, 12, 12, 12, 12, 4 ];
124123
*
125124
* // Perform a reduction:
126-
* blockedunary10d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
125+
* blockedunary10d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
127126
*
128127
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
129128
* // returns [ [ [ [ [ [ [ [ [ [ true, false, true ] ] ] ] ] ] ] ] ] ]
130129
*/
131-
function blockedunary10d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
130+
function blockedunary10d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
132131
var bsize;
133132
var ybuf;
134133
var idx;

base/unary-reduce-subarray-by/lib/10d_blocked_accessors.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -127,12 +126,12 @@ var wrap = require( './callback_wrapper.js' );
127126
* var slx = [ 12, 12, 12, 12, 12, 12, 12, 12, 12, 4 ];
128127
*
129128
* // Perform a reduction:
130-
* blockedunary10d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
129+
* blockedunary10d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
131130
*
132131
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
133132
* // returns [ [ [ [ [ [ [ [ [ [ true, false, true ] ] ] ] ] ] ] ] ] ]
134133
*/
135-
function blockedunary10d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
134+
function blockedunary10d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
136135
var bsize;
137136
var ybuf;
138137
var idx;

base/unary-reduce-subarray-by/lib/2d_blocked.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -123,12 +122,12 @@ var wrap = require( './callback_wrapper.js' );
123122
* var slx = [ 12, 4 ];
124123
*
125124
* // Perform a reduction:
126-
* blockedunary2d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
125+
* blockedunary2d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
127126
*
128127
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
129128
* // returns [ [ true, false, true ] ]
130129
*/
131-
function blockedunary2d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
130+
function blockedunary2d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
132131
var bsize;
133132
var ybuf;
134133
var idx;

base/unary-reduce-subarray-by/lib/2d_blocked_accessors.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -127,12 +126,12 @@ var wrap = require( './callback_wrapper.js' );
127126
* var slx = [ 12, 4 ];
128127
*
129128
* // Perform a reduction:
130-
* blockedunary2d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
129+
* blockedunary2d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
131130
*
132131
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
133132
* // returns [ [ true, false, true ] ]
134133
*/
135-
function blockedunary2d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
134+
function blockedunary2d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
136135
var bsize;
137136
var ybuf;
138137
var idx;

base/unary-reduce-subarray-by/lib/3d_blocked.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -123,12 +122,12 @@ var wrap = require( './callback_wrapper.js' );
123122
* var slx = [ 12, 12, 4 ];
124123
*
125124
* // Perform a reduction:
126-
* blockedunary3d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
125+
* blockedunary3d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
127126
*
128127
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
129128
* // returns [ [ [ true, false, true ] ] ]
130129
*/
131-
function blockedunary3d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
130+
function blockedunary3d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
132131
var bsize;
133132
var ybuf;
134133
var idx;

base/unary-reduce-subarray-by/lib/3d_blocked_accessors.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -127,12 +126,12 @@ var wrap = require( './callback_wrapper.js' );
127126
* var slx = [ 12, 12, 4 ];
128127
*
129128
* // Perform a reduction:
130-
* blockedunary3d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
129+
* blockedunary3d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
131130
*
132131
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
133132
* // returns [ [ [ true, false, true ] ] ]
134133
*/
135-
function blockedunary3d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
134+
function blockedunary3d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
136135
var bsize;
137136
var ybuf;
138137
var idx;

base/unary-reduce-subarray-by/lib/4d_blocked.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -123,12 +122,12 @@ var wrap = require( './callback_wrapper.js' );
123122
* var slx = [ 12, 12, 12, 4 ];
124123
*
125124
* // Perform a reduction:
126-
* blockedunary4d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
125+
* blockedunary4d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
127126
*
128127
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
129128
* // returns [ [ [ [ true, false, true ] ] ] ]
130129
*/
131-
function blockedunary4d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
130+
function blockedunary4d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
132131
var bsize;
133132
var ybuf;
134133
var idx;

base/unary-reduce-subarray-by/lib/4d_blocked_accessors.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -127,12 +126,12 @@ var wrap = require( './callback_wrapper.js' );
127126
* var slx = [ 12, 12, 12, 4 ];
128127
*
129128
* // Perform a reduction:
130-
* blockedunary4d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
129+
* blockedunary4d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
131130
*
132131
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
133132
* // returns [ [ [ [ true, false, true ] ] ] ]
134133
*/
135-
function blockedunary4d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
134+
function blockedunary4d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
136135
var bsize;
137136
var ybuf;
138137
var idx;

base/unary-reduce-subarray-by/lib/5d_blocked.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var wrap = require( './callback_wrapper.js' );
4646
* @param {NonNegativeIntegerArray} ldims - list of loop dimensions
4747
* @param {NonNegativeIntegerArray} cdims - list of "core" dimensions
4848
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
49-
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
5049
* @param {Options} opts - reduction function options
5150
* @param {boolean} hasOpts - boolean indicating whether to pass an options argument to a reduction function
5251
* @param {Function} clbk - callback function
@@ -123,12 +122,12 @@ var wrap = require( './callback_wrapper.js' );
123122
* var slx = [ 12, 12, 12, 12, 4 ];
124123
*
125124
* // Perform a reduction:
126-
* blockedunary5d( base, [ x, y ], views, ibuf, ldims, cdims, slx, true, null, false, clbk, {} );
125+
* blockedunary5d( base, [ x, y ], views, ibuf, ldims, cdims, slx, null, false, clbk, {} );
127126
*
128127
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
129128
* // returns [ [ [ [ [ true, false, true ] ] ] ] ]
130129
*/
131-
function blockedunary5d( fcn, arrays, views, ibuf, ldims, cdims, strides, isRowMajor, opts, hasOpts, clbk, thisArg ) {
130+
function blockedunary5d( fcn, arrays, views, ibuf, ldims, cdims, strides, opts, hasOpts, clbk, thisArg ) {
132131
var bsize;
133132
var ybuf;
134133
var idx;

0 commit comments

Comments
 (0)