Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ interface Routine {
* @param K - number of columns in the matrix `op(A)` and number of rows in the matrix `op(B)`
* @param alpha - scalar constant
* @param A - first matrix
* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
* @param LDA - stride between successive contiguous vectors of the matrix `A` (a.k.a., leading dimension of the matrix `A`)
* @param B - second matrix
* @param LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
* @param LDB - stride between successive contiguous vectors of the matrix `B` (a.k.a., leading dimension of the matrix `B`)
* @param beta - scalar constant
* @param C - third matrix
* @param LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
* @param LDC - stride between successive contiguous vectors of the matrix `C` (a.k.a., leading dimension of the matrix `C`)
* @returns `C`
*
* @example
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dgemm/lib/dgemm.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function dgemm( order, transA, transB, M, N, K, alpha, A, LDA, B, LDB, beta, C,
throw new RangeError( format( 'invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.', M ) );
}
if ( N < 0 ) {
throw new RangeError( format( 'invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.', M ) );
throw new RangeError( format( 'invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.', N ) );
}
if ( K < 0 ) {
throw new RangeError( format( 'invalid argument. Sixth argument must be a nonnegative integer. Value: `%d`.', K ) );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/cusum/lib/assign.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var base = require( './base.js' ).assign;
* @param {(ndarrayLike|number|ComplexLike)} [initial] - initial value
* @param {ndarrayLike} out - output ndarray
* @param {Options} [options] - function options
* @param {integer} [options.dims] - list of dimensions over which to perform operation
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
* @throws {TypeError} first argument must be an ndarray-like object
* @throws {TypeError} initial value argument must be either an ndarray-like object or a numeric value
* @throws {TypeError} output argument must be an ndarray-like object
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/join/lib/assign.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var base = require( './base.js' ).assign;
* @param {ndarrayLike} out - output ndarray
* @param {Options} [options] - function options
* @param {(ndarrayLike|*)} [options.sep=','] - separator
* @param {integer} [options.dims] - list of dimensions over which to perform operation
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
* @throws {TypeError} first argument must be an ndarray-like object
* @throws {TypeError} second argument must be an ndarray-like object
* @throws {TypeError} options argument must be an object
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/join/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var base = require( './base.js' );
* @param {ndarrayLike} x - input ndarray
* @param {Options} [options] - function options
* @param {(ndarrayLike|*)} [options.sep=','] - separator
* @param {integer} [options.dims] - list of dimensions over which to perform operation
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
* @throws {TypeError} first argument must be an ndarray-like object
* @throws {TypeError} options argument must be an object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
* 'strides': [ 0, 0 ],
* 'offset': 0,
* 'order': 'row-major'
};
* };
* var alpha = {
* 'dtype': 'float64',
* 'data': [ 0.05 ],
Expand All @@ -180,7 +180,7 @@
* };
*
* // Perform a reduction:
* unaryReduceStrided1d( ztest, [ x, y, alternative, alpha, mu, sigma ], [ 2, 3 ] );

Check warning on line 183 in lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "ztest"
*
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
* // returns [ [ <Float64Results>, <Float64Results>, <Float64Results> ] ]
Expand Down Expand Up @@ -237,7 +237,7 @@
* 'strides': [ 0 ],
* 'offset': 0,
* 'order': 'row-major'
};
* };
* var alpha = {
* 'dtype': 'float64',
* 'data': [ 0.05 ],
Expand All @@ -264,7 +264,7 @@
* };
*
* // Perform a reduction:
* unaryReduceStrided1d( ztest, [ x, y, alternative, alpha, mu, sigma ], [ 0, 1, 2, 3 ] );

Check warning on line 267 in lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "ztest"
*
* var v = y.data.get( 0 );
* // returns <Float64Results>
Expand Down Expand Up @@ -322,7 +322,7 @@
* 'strides': [ 0, 0, 0 ],
* 'offset': 0,
* 'order': 'row-major'
};
* };
* var alpha = {
* 'dtype': 'float64',
* 'data': [ 0.05 ],
Expand All @@ -349,7 +349,7 @@
* };
*
* // Perform a reduction:
* unaryReduceStrided1d( ztest, [ x, y, alternative, alpha, mu, sigma ], [] );

Check warning on line 352 in lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "ztest"
*
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
* // returns [ [ [ <Float64Results>, <Float64Results> ], [ <Float64Results>, <Float64Results> ] ], [ [ <Float64Results>, <Float64Results> ], [ <Float64Results>, <Float64Results> ] ], [ [ <Float64Results>, <Float64Results> ], [ <Float64Results>, <Float64Results> ] ] ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ function unaryReduceStrided1dBy( fcn, arrays, dims, options, clbk, thisArg ) { /
// Determine whether we only have one loop dimension and can thus readily perform one-dimensional iteration...
if ( K === 1 ) {
if ( y.accessorProtocol ) {
return ACCESSOR_UNARY[ K ]( fcn, arr, strategy, workspace, views, ldims, d, sl, opts, FLG, cb, ctx );
return ACCESSOR_UNARY[ K ]( fcn, arr, strategy, views, workspace, ldims, d, sl, opts, FLG, cb, ctx );
}
return UNARY[ K ]( fcn, arr, strategy, views, workspace, ldims, d, sl, opts, FLG, cb, ctx );
}
Expand Down
Loading