@@ -1196,7 +1196,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
1196
1196
1197
1197
// VARIABLES //
1198
1198
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
1200
1200
1201
1201
1202
1202
// FUNCTIONS //
@@ -1230,13 +1230,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
1230
1230
* @private
1231
1231
* @param {NonNegativeInteger} M - number of rows
1232
1232
* @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
1235
1235
* @param {Array<Function>} X.accessors - array element accessors
1236
1236
* @param {integer} strideX1 - stride of the first dimension of `X`
1237
1237
* @param {integer} strideX2 - stride of the second dimension of `X`
1238
1238
* @param {NonNegativeInteger} offsetX - starting index for `X`
1239
- * @returns {Collection } matrix object to fill
1239
+ * @returns {Object } matrix object
1240
1240
*
1241
1241
* @example
1242
1242
* 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
1267
1267
var i1;
1268
1268
var ix;
1269
1269
1270
- // Cache references to array data:
1270
+ // Cache a reference to array data:
1271
1271
xbuf = X.data;
1272
1272
1273
- // Cache references to element accessors :
1273
+ // Cache a reference to an element accessor :
1274
1274
set = X.accessors[ 1 ];
1275
1275
1276
1276
if ( isRowMajor( [ strideX1, strideX2 ] ) ) {
@@ -1304,13 +1304,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
1304
1304
* @param {NonNegativeInteger} M - number of rows
1305
1305
* @param {NonNegativeInteger} N - number of columns
1306
1306
* @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
1309
1309
* @param {Array<Function>} X.accessors - array element accessors
1310
1310
* @param {integer} strideX1 - stride of the first dimension of `X`
1311
1311
* @param {integer} strideX2 - stride of the second dimension of `X`
1312
1312
* @param {NonNegativeInteger} offsetX - starting index for `X`
1313
- * @returns {Collection } matrix object to fill
1313
+ * @returns {Object } matrix object
1314
1314
*
1315
1315
* @example
1316
1316
* 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
1342
1342
var i1;
1343
1343
var ix;
1344
1344
1345
- // Cache references to array data:
1345
+ // Cache a reference to array data:
1346
1346
xbuf = X.data;
1347
1347
1348
1348
// Cache references to element accessors:
@@ -1399,7 +1399,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
1399
1399
* @param {integer} strideC1 - stride of the first dimension of `C`
1400
1400
* @param {integer} strideC2 - stride of the second dimension of `C`
1401
1401
* @param {NonNegativeInteger} offsetC - starting index for `C`
1402
- * @returns {Float64Array } `C`
1402
+ * @returns {Object } `C`
1403
1403
*
1404
1404
* @example
1405
1405
* 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
1489
1489
* @param {integer} strideC1 - stride of the first dimension of `C`
1490
1490
* @param {integer} strideC2 - stride of the second dimension of `C`
1491
1491
* @param {NonNegativeInteger} offsetC - starting index for `C`
1492
- * @returns {Float64Array } `C`
1492
+ * @returns {Object } `C`
1493
1493
*
1494
1494
* @example
1495
1495
* 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
1633
1633
* @param {integer} strideC1 - stride of the first dimension of `C`
1634
1634
* @param {integer} strideC2 - stride of the second dimension of `C`
1635
1635
* @param {NonNegativeInteger} offsetC - starting index for `C`
1636
- * @returns {Float64Array } `C`
1636
+ * @returns {Object } `C`
1637
1637
*
1638
1638
* @example
1639
1639
* 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
1723
1723
< div class ='footer quiet pad2 space-top1 center small '>
1724
1724
Code coverage generated by
1725
1725
< 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
1727
1727
</ div >
1728
1728
< script src ="../../../../prettify.js "> </ script >
1729
1729
< script >
0 commit comments