Skip to content

Commit 86a1c2d

Browse files
committed
Update artifacts
1 parent 08a0535 commit 86a1c2d

File tree

7 files changed

+26
-26
lines changed

7 files changed

+26
-26
lines changed

blas/base/ggemm/accessors.js.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11961196
&nbsp;
11971197
// VARIABLES //
11981198
&nbsp;
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
&nbsp;
12011201
&nbsp;
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&lt;Function&gt;} 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
&nbsp;
1270-
// Cache references to array data:
1270+
// Cache a reference to array data:
12711271
xbuf = X.data;
12721272
&nbsp;
1273-
// Cache references to element accessors:
1273+
// Cache a reference to an element accessor:
12741274
set = X.accessors[ 1 ];
12751275
&nbsp;
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&lt;Function&gt;} 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
&nbsp;
1345-
// Cache references to array data:
1345+
// Cache a reference to array data:
13461346
xbuf = X.data;
13471347
&nbsp;
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>

blas/base/ggemm/base.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10291029
&nbsp;
10301030
var arraylike2object = require( '@stdlib/array/base/arraylike2object' );
10311031
var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' );
1032-
var ddot = require( '@stdlib/blas/base/ddot' ).ndarray;
1032+
var gdot = require( '@stdlib/blas/base/gdot' ).ndarray;
10331033
var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' );
10341034
var accessors = require( './accessors.js' );
10351035
&nbsp;
@@ -1236,7 +1236,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
12361236
ia = offsetA + ( i1*strideA1 );
12371237
for ( i0 = 0; i0 &lt; S0; i0++ ) {
12381238
ib = offsetB + ( i0*strideB2 );
1239-
C[ ic ] += alpha * ddot( K, A, da0, ia, B, db0, ib );
1239+
C[ ic ] += alpha * gdot( K, A, da0, ia, B, db0, ib );
12401240
ic += dc0;
12411241
}
12421242
ic += dc1;
@@ -1346,7 +1346,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
13461346
ia = oa + ( i1*strideA1 );
13471347
for ( i0 = 0; i0 &lt; s0; i0++ ) {
13481348
ib = ob + ( i0*strideB2 );
1349-
C[ ic ] += alpha * ddot( sk, A, da0, ia, B, db0, ib );
1349+
C[ ic ] += alpha * gdot( sk, A, da0, ia, B, db0, ib );
13501350
ic += dc0;
13511351
}
13521352
ic += dc1;
@@ -1480,7 +1480,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
14801480
<div class='footer quiet pad2 space-top1 center small'>
14811481
Code coverage generated by
14821482
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1483-
at 2025-08-11T07:18:55.099Z
1483+
at 2025-08-12T05:41:25.778Z
14841484
</div>
14851485
<script src="../../../../prettify.js"></script>
14861486
<script>

blas/base/ggemm/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[1326,1335,99.3258,172,175,98.2857,14,14,100,1326,1335,99.3258,"a6a4a6f1cab368e003b45457dce3fc5afca09d8e","2025-08-11 07:17:48 +0000"]
1+
[1326,1335,99.3258,172,175,98.2857,14,14,100,1326,1335,99.3258,"3a9b02a6c20d82053030d27d5bb2483ce34c6823","2025-08-11 22:37:43 -0700"]

blas/base/ggemm/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/ggemm/lib</h1>
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-08-11T07:18:55.099Z
164+
at 2025-08-12T05:41:25.778Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/base/ggemm/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
259259
<div class='footer quiet pad2 space-top1 center small'>
260260
Code coverage generated by
261261
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
262-
at 2025-08-11T07:18:55.099Z
262+
at 2025-08-12T05:41:25.778Z
263263
</div>
264264
<script src="../../../../prettify.js"></script>
265265
<script>

blas/base/ggemm/main.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -437,10 +437,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
437437
* var B = [ 1.0, 1.0, 0.0, 1.0 ];
438438
* var C = [ 1.0, 2.0, 3.0, 4.0 ];
439439
*
440-
* dgemm( 'row-major', 'no-transpose', 'no-transpose', 2, 2, 2, 1.0, A, 2, B, 2, 1.0, C, 2 );
440+
* ggemm( 'row-major', 'no-transpose', 'no-transpose', 2, 2, 2, 1.0, A, 2, B, 2, 1.0, C, 2 );
441441
* // C =&gt; [ 2.0, 5.0, 6.0, 11.0 ]
442442
*/
443-
function dgemm( order, transA, transB, M, N, K, alpha, A, LDA, B, LDB, beta, C, LDC ) { // eslint-disable-line max-params, max-len
443+
function ggemm( order, transA, transB, M, N, K, alpha, A, LDA, B, LDB, beta, C, LDC ) { // eslint-disable-line max-params, max-len
444444
var nrowsa;
445445
var nrowsb;
446446
var valc;
@@ -524,15 +524,15 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
524524
&nbsp;
525525
// EXPORTS //
526526
&nbsp;
527-
module.exports = dgemm;
527+
module.exports = ggemm;
528528
&nbsp;</pre></td></tr></table></pre>
529529

530530
<div class='push'></div><!-- for sticky footer -->
531531
</div><!-- /wrapper -->
532532
<div class='footer quiet pad2 space-top1 center small'>
533533
Code coverage generated by
534534
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
535-
at 2025-08-11T07:18:55.099Z
535+
at 2025-08-12T05:41:25.778Z
536536
</div>
537537
<script src="../../../../prettify.js"></script>
538538
<script>

blas/base/ggemm/ndarray.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
361361
<div class='footer quiet pad2 space-top1 center small'>
362362
Code coverage generated by
363363
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
364-
at 2025-08-11T07:18:55.099Z
364+
at 2025-08-12T05:41:25.778Z
365365
</div>
366366
<script src="../../../../prettify.js"></script>
367367
<script>

0 commit comments

Comments
 (0)