Skip to content

Commit b6a28c5

Browse files
committed
Update artifacts
1 parent 8cbd2e0 commit b6a28c5

File tree

9 files changed

+22
-21
lines changed

9 files changed

+22
-21
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[495,495,100,75,75,100,4,4,100,495,495,100,"f47836421fb3f8e6bc9f2288d7a7dc4c546ce465","2024-04-14 22:27:52 -0400"]
22
[457,457,100,59,59,100,4,4,100,457,457,100,"e3efb84a0ec88f76fa2a799252da98165fcd7d4d","2024-12-07 16:23:14 -0500"]
3+
[457,457,100,59,59,100,4,4,100,457,457,100,"5653a9fe8ef8ec98cdd4968708a82b847b7d3185","2025-06-07 03:32:48 -0700"]

blas/ext/base/snansumpw/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/snansumpw/li
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 2024-12-07T21:25:21.343Z
194+
at 2025-06-07T10:34:19.531Z
195195
</div>
196196
<script src="../../../../../prettify.js"></script>
197197
<script>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
274274
<div class='footer quiet pad2 space-top1 center small'>
275275
Code coverage generated by
276276
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
277-
at 2024-12-07T21:25:21.343Z
277+
at 2025-06-07T10:34:19.531Z
278278
</div>
279279
<script src="../../../../../prettify.js"></script>
280280
<script>

blas/ext/base/snansumpw/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 2024-12-07T21:25:21.343Z
178+
at 2025-06-07T10:34:19.531Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/snansumpw/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 2024-12-07T21:25:21.343Z
178+
at 2025-06-07T10:34:19.531Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
397397
&nbsp;
398398
// MODULES //
399399
&nbsp;
400-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
400+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
401401
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
402402
var floor = require( '@stdlib/math/base/special/floor' );
403403
&nbsp;
@@ -465,7 +465,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
465465
s = 0.0;
466466
for ( i = 0; i &lt; N; i++ ) {
467467
if ( isnanf( x[ ix ] ) === false ) {
468-
s = float64ToFloat32( s + x[ ix ] );
468+
s = f32( s + x[ ix ] );
469469
}
470470
ix += strideX;
471471
}
@@ -492,30 +492,30 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
492492
&nbsp;
493493
M = N % 8;
494494
for ( i = 8; i &lt; N-M; i += 8 ) {
495-
s0 = ( isnanf( x[ ix ] ) ) ? s0 : float64ToFloat32( s0 + x[ ix ] );
495+
s0 = ( isnanf( x[ ix ] ) ) ? s0 : f32( s0 + x[ ix ] );
496496
ix += strideX;
497-
s1 = ( isnanf( x[ ix ] ) ) ? s1 : float64ToFloat32( s1 + x[ ix ] );
497+
s1 = ( isnanf( x[ ix ] ) ) ? s1 : f32( s1 + x[ ix ] );
498498
ix += strideX;
499-
s2 = ( isnanf( x[ ix ] ) ) ? s2 : float64ToFloat32( s2 + x[ ix ] );
499+
s2 = ( isnanf( x[ ix ] ) ) ? s2 : f32( s2 + x[ ix ] );
500500
ix += strideX;
501-
s3 = ( isnanf( x[ ix ] ) ) ? s3 : float64ToFloat32( s3 + x[ ix ] );
501+
s3 = ( isnanf( x[ ix ] ) ) ? s3 : f32( s3 + x[ ix ] );
502502
ix += strideX;
503-
s4 = ( isnanf( x[ ix ] ) ) ? s4 : float64ToFloat32( s4 + x[ ix ] );
503+
s4 = ( isnanf( x[ ix ] ) ) ? s4 : f32( s4 + x[ ix ] );
504504
ix += strideX;
505-
s5 = ( isnanf( x[ ix ] ) ) ? s5 : float64ToFloat32( s5 + x[ ix ] );
505+
s5 = ( isnanf( x[ ix ] ) ) ? s5 : f32( s5 + x[ ix ] );
506506
ix += strideX;
507-
s6 = ( isnanf( x[ ix ] ) ) ? s6 : float64ToFloat32( s6 + x[ ix ] );
507+
s6 = ( isnanf( x[ ix ] ) ) ? s6 : f32( s6 + x[ ix ] );
508508
ix += strideX;
509-
s7 = ( isnanf( x[ ix ] ) ) ? s7 : float64ToFloat32( s7 + x[ ix ] );
509+
s7 = ( isnanf( x[ ix ] ) ) ? s7 : f32( s7 + x[ ix ] );
510510
ix += strideX;
511511
}
512512
// Pairwise sum the accumulators:
513-
s = float64ToFloat32( float64ToFloat32( float64ToFloat32(s0+s1) + float64ToFloat32(s2+s3) ) + float64ToFloat32( float64ToFloat32(s4+s5) + float64ToFloat32(s6+s7) ) ); // eslint-disable-line max-len
513+
s = f32( f32( f32(s0+s1) + f32(s2+s3) ) + f32( f32(s4+s5) + f32(s6+s7) ) ); // eslint-disable-line max-len
514514
&nbsp;
515515
// Clean-up loop...
516516
for ( i; i &lt; N; i++ ) {
517517
if ( isnanf( x[ ix ] ) === false ) {
518-
s = float64ToFloat32( s + x[ ix ] );
518+
s = f32( s + x[ ix ] );
519519
}
520520
ix += strideX;
521521
}
@@ -524,7 +524,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
524524
// Recurse by dividing by two, but avoiding non-multiples of unroll factor...
525525
n = floor( N/2 );
526526
n -= n % 8;
527-
return float64ToFloat32( snansumpw( n, x, strideX, ix ) + snansumpw( N-n, x, strideX, ix+(n*strideX) ) ); // eslint-disable-line max-len
527+
return f32( snansumpw( n, x, strideX, ix ) + snansumpw( N-n, x, strideX, ix+(n*strideX) ) ); // eslint-disable-line max-len
528528
}
529529
&nbsp;
530530
&nbsp;
@@ -538,7 +538,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
538538
<div class='footer quiet pad2 space-top1 center small'>
539539
Code coverage generated by
540540
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
541-
at 2024-12-07T21:25:21.343Z
541+
at 2025-06-07T10:34:19.531Z
542542
</div>
543543
<script src="../../../../../prettify.js"></script>
544544
<script>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
226226
<div class='footer quiet pad2 space-top1 center small'>
227227
Code coverage generated by
228228
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
229-
at 2024-12-07T21:25:21.343Z
229+
at 2025-06-07T10:34:19.531Z
230230
</div>
231231
<script src="../../../../../prettify.js"></script>
232232
<script>

blas/ext/base/snansumpw/snansumpw.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
250250
<div class='footer quiet pad2 space-top1 center small'>
251251
Code coverage generated by
252252
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
253-
at 2024-12-07T21:25:21.343Z
253+
at 2025-06-07T10:34:19.531Z
254254
</div>
255255
<script src="../../../../../prettify.js"></script>
256256
<script>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
223223
<div class='footer quiet pad2 space-top1 center small'>
224224
Code coverage generated by
225225
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
226-
at 2024-12-07T21:25:21.343Z
226+
at 2025-06-07T10:34:19.531Z
227227
</div>
228228
<script src="../../../../../prettify.js"></script>
229229
<script>

0 commit comments

Comments
 (0)