Skip to content

Commit 88c1d4b

Browse files
committed
Update artifacts
1 parent 2f2d3a4 commit 88c1d4b

File tree

9 files changed

+19
-18
lines changed

9 files changed

+19
-18
lines changed

blas/ext/base/scusumkbn2/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
[425,425,100,21,21,100,4,4,100,425,425,100,"3ca8ed8f2fb388fcf6890322f6f880c30fd6094e","2025-01-17 12:26:11 -0800"]
33
[439,439,100,27,27,100,4,4,100,439,439,100,"9cb8df6d6c62cb49e58261cd67a44db8b7872087","2025-04-24 22:45:35 -0700"]
44
[440,440,100,27,27,100,4,4,100,440,440,100,"82cb82cdb7d261071eaa4a827cc261d362c6cb62","2025-04-24 23:31:26 -0700"]
5+
[440,440,100,27,27,100,4,4,100,440,440,100,"f5c3bbbaf92d52e8abc2a06758f815e37aee8acb","2025-06-07 02:49:25 -0700"]

blas/ext/base/scusumkbn2/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ <h1><a href="../../../../../index.html">All files</a> blas/ext/base/scusumkbn2/l
191191
<div class='footer quiet pad2 space-top1 center small'>
192192
Code coverage generated by
193193
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
194-
at 2025-04-25T06:36:13.950Z
194+
at 2025-06-07T09:51:04.098Z
195195
</div>
196196
<script src="../../../../../prettify.js"></script>
197197
<script>

blas/ext/base/scusumkbn2/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
280280
<div class='footer quiet pad2 space-top1 center small'>
281281
Code coverage generated by
282282
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
283-
at 2025-04-25T06:36:13.950Z
283+
at 2025-06-07T09:51:04.098Z
284284
</div>
285285
<script src="../../../../../prettify.js"></script>
286286
<script>

blas/ext/base/scusumkbn2/main.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
175175
<div class='footer quiet pad2 space-top1 center small'>
176176
Code coverage generated by
177177
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
178-
at 2025-04-25T06:36:13.950Z
178+
at 2025-06-07T09:51:04.098Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/scusumkbn2/native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
175175
<div class='footer quiet pad2 space-top1 center small'>
176176
Code coverage generated by
177177
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
178-
at 2025-04-25T06:36:13.950Z
178+
at 2025-06-07T09:51:04.098Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/scusumkbn2/ndarray.js.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
327327
&nbsp;
328328
// MODULES //
329329
&nbsp;
330-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
330+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
331331
var abs = require( '@stdlib/math/base/special/abs' );
332332
&nbsp;
333333
&nbsp;
@@ -387,7 +387,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
387387
if ( v !== 0.0 ) {
388388
break;
389389
}
390-
sum = float64ToFloat32( sum + v );
390+
sum = f32( sum + v );
391391
y[ iy ] = sum;
392392
ix += strideX;
393393
iy += strideY;
@@ -399,23 +399,23 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
399399
cs = 0.0; // first order correction term for lost low order bits
400400
for ( ; i &lt; N; i++ ) {
401401
v = x[ ix ];
402-
t = float64ToFloat32( sum+v );
402+
t = f32( sum+v );
403403
if ( abs( sum ) &gt;= abs( v ) ) {
404-
c = float64ToFloat32( float64ToFloat32( sum-t ) + v );
404+
c = f32( f32( sum-t ) + v );
405405
} else {
406-
c = float64ToFloat32( float64ToFloat32( v-t ) + sum );
406+
c = f32( f32( v-t ) + sum );
407407
}
408408
sum = t;
409-
t = float64ToFloat32( cs+c );
409+
t = f32( cs+c );
410410
if ( abs( cs ) &gt;= abs( c ) ) {
411-
cc = float64ToFloat32( float64ToFloat32( cs-t ) + c );
411+
cc = f32( f32( cs-t ) + c );
412412
} else {
413-
cc = float64ToFloat32( float64ToFloat32( c-t ) + cs );
413+
cc = f32( f32( c-t ) + cs );
414414
}
415415
cs = t;
416-
ccs = float64ToFloat32( ccs+cc );
416+
ccs = f32( ccs+cc );
417417
&nbsp;
418-
y[ iy ] = float64ToFloat32( sum + float64ToFloat32( cs+ccs ) );
418+
y[ iy ] = f32( sum + f32( cs+ccs ) );
419419
ix += strideX;
420420
iy += strideY;
421421
}
@@ -433,7 +433,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
433433
<div class='footer quiet pad2 space-top1 center small'>
434434
Code coverage generated by
435435
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
436-
at 2025-04-25T06:36:13.950Z
436+
at 2025-06-07T09:51:04.098Z
437437
</div>
438438
<script src="../../../../../prettify.js"></script>
439439
<script>

blas/ext/base/scusumkbn2/ndarray.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
244244
<div class='footer quiet pad2 space-top1 center small'>
245245
Code coverage generated by
246246
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
247-
at 2025-04-25T06:36:13.950Z
247+
at 2025-06-07T09:51:04.098Z
248248
</div>
249249
<script src="../../../../../prettify.js"></script>
250250
<script>

blas/ext/base/scusumkbn2/scusumkbn2.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
265265
<div class='footer quiet pad2 space-top1 center small'>
266266
Code coverage generated by
267267
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
268-
at 2025-04-25T06:36:13.950Z
268+
at 2025-06-07T09:51:04.098Z
269269
</div>
270270
<script src="../../../../../prettify.js"></script>
271271
<script>

blas/ext/base/scusumkbn2/scusumkbn2.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
238238
<div class='footer quiet pad2 space-top1 center small'>
239239
Code coverage generated by
240240
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
241-
at 2025-04-25T06:36:13.950Z
241+
at 2025-06-07T09:51:04.098Z
242242
</div>
243243
<script src="../../../../../prettify.js"></script>
244244
<script>

0 commit comments

Comments
 (0)