@@ -1196,7 +1196,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11961196
11971197// VARIABLES //
11981198
1199- var bsize = blockSize( 'float64' ); // TODO: consider using a larger block size
1199+ var bsize = blockSize( 'float64', 'float64' ); // TODO: consider using a larger block size
12001200
12011201
12021202// FUNCTIONS //
@@ -1230,13 +1230,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
12301230* @private
12311231* @param {NonNegativeInteger} M - number of rows
12321232* @param {NonNegativeInteger} N - number of columns
1233- * @param {Object} X - matrix object to fill
1234- * @param {Collection} X.data - matrix data to fill
1233+ * @param {Object} X - matrix object
1234+ * @param {Collection} X.data - matrix data
12351235* @param {Array<Function>} X.accessors - array element accessors
12361236* @param {integer} strideX1 - stride of the first dimension of `X`
12371237* @param {integer} strideX2 - stride of the second dimension of `X`
12381238* @param {NonNegativeInteger} offsetX - starting index for `X`
1239- * @returns {Collection } matrix object to fill
1239+ * @returns {Object } matrix object
12401240*
12411241* @example
12421242* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
@@ -1267,10 +1267,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
12671267 var i1;
12681268 var ix;
12691269
1270- // Cache references to array data:
1270+ // Cache a reference to array data:
12711271 xbuf = X.data;
12721272
1273- // Cache references to element accessors :
1273+ // Cache a reference to an element accessor :
12741274 set = X.accessors[ 1 ];
12751275
12761276 if ( isRowMajor( [ strideX1, strideX2 ] ) ) {
@@ -1304,13 +1304,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
13041304* @param {NonNegativeInteger} M - number of rows
13051305* @param {NonNegativeInteger} N - number of columns
13061306* @param {number} beta - scalar
1307- * @param {Object} X - matrix object to fill
1308- * @param {Collection} X.data - matrix data to fill
1307+ * @param {Object} X - matrix object
1308+ * @param {Collection} X.data - matrix data
13091309* @param {Array<Function>} X.accessors - array element accessors
13101310* @param {integer} strideX1 - stride of the first dimension of `X`
13111311* @param {integer} strideX2 - stride of the second dimension of `X`
13121312* @param {NonNegativeInteger} offsetX - starting index for `X`
1313- * @returns {Collection } matrix object to fill
1313+ * @returns {Object } matrix object
13141314*
13151315* @example
13161316* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
@@ -1342,7 +1342,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
13421342 var i1;
13431343 var ix;
13441344
1345- // Cache references to array data:
1345+ // Cache a reference to array data:
13461346 xbuf = X.data;
13471347
13481348 // Cache references to element accessors:
@@ -1399,7 +1399,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
13991399* @param {integer} strideC1 - stride of the first dimension of `C`
14001400* @param {integer} strideC2 - stride of the second dimension of `C`
14011401* @param {NonNegativeInteger} offsetC - starting index for `C`
1402- * @returns {Float64Array } `C`
1402+ * @returns {Object } `C`
14031403*
14041404* @example
14051405* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
@@ -1489,7 +1489,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
14891489* @param {integer} strideC1 - stride of the first dimension of `C`
14901490* @param {integer} strideC2 - stride of the second dimension of `C`
14911491* @param {NonNegativeInteger} offsetC - starting index for `C`
1492- * @returns {Float64Array } `C`
1492+ * @returns {Object } `C`
14931493*
14941494* @example
14951495* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
@@ -1633,7 +1633,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
16331633* @param {integer} strideC1 - stride of the first dimension of `C`
16341634* @param {integer} strideC2 - stride of the second dimension of `C`
16351635* @param {NonNegativeInteger} offsetC - starting index for `C`
1636- * @returns {Float64Array } `C`
1636+ * @returns {Object } `C`
16371637*
16381638* @example
16391639* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
@@ -1723,7 +1723,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
17231723 < div class ='footer quiet pad2 space-top1 center small '>
17241724 Code coverage generated by
17251725 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
1726- at 2025-08-11T07:18:55.099Z
1726+ at 2025-08-12T05:41:25.778Z
17271727 </ div >
17281728 < script src ="../../../../prettify.js "> </ script >
17291729 < script >
0 commit comments