Skip to content

Commit 8cc820c

Browse files
committed
Update artifacts
1 parent 09cad8d commit 8cc820c

File tree

9 files changed

+23
-22
lines changed

9 files changed

+23
-22
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[469,469,100,36,36,100,4,4,100,469,469,100,"f1c46cd7aed96dafc8b6fd7ea2a45927062b9fcd","2024-03-24 14:40:54 -0400"]
22
[469,469,100,36,36,100,4,4,100,469,469,100,"5b989a66ecbbbeb2788c6cfbd74b7d01301c0173","2024-09-27 20:43:21 -0400"]
33
[436,436,100,24,24,100,4,4,100,436,436,100,"8582e3f3ab1f6bb233df00cafe362954fefe24de","2025-01-17 15:10:31 -0800"]
4+
[436,436,100,24,24,100,4,4,100,436,436,100,"5fe7c52586a8df3f3baa94f5588eadf28d209499","2025-06-04 19:45:22 -0700"]

blas/ext/base/sasumpw/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/sasumpw/lib<
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-01-17T23:11:56.711Z
194+
at 2025-06-05T02:46:53.422Z
195195
</div>
196196
<script src="../../../../../prettify.js"></script>
197197
<script>

blas/ext/base/sasumpw/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 2025-01-17T23:11:56.711Z
277+
at 2025-06-05T02:46:53.422Z
278278
</div>
279279
<script src="../../../../../prettify.js"></script>
280280
<script>

blas/ext/base/sasumpw/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-01-17T23:11:56.711Z
178+
at 2025-06-05T02:46:53.422Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/sasumpw/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-01-17T23:11:56.711Z
178+
at 2025-06-05T02:46:53.422Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
355355
&nbsp;
356356
// MODULES //
357357
&nbsp;
358-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
358+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
359359
var floor = require( '@stdlib/math/base/special/floor' );
360360
var absf = require( '@stdlib/math/base/special/absf' );
361361
&nbsp;
@@ -413,13 +413,13 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
413413
}
414414
ix = offsetX;
415415
if ( strideX === 0 ) {
416-
return float64ToFloat32( N * absf( x[ ix ] ) );
416+
return f32( N * absf( x[ ix ] ) );
417417
}
418418
if ( N &lt; 8 ) {
419419
// Use simple summation...
420420
s = 0.0;
421421
for ( i = 0; i &lt; N; i++ ) {
422-
s = float64ToFloat32( s + absf( x[ ix ] ) );
422+
s = f32( s + absf( x[ ix ] ) );
423423
ix += strideX;
424424
}
425425
return s;
@@ -438,30 +438,30 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
438438
&nbsp;
439439
M = N % 8;
440440
for ( i = 8; i &lt; N-M; i += 8 ) {
441-
s0 = float64ToFloat32( s0 + absf( x[ ix ] ) );
442-
s1 = float64ToFloat32( s1 + absf( x[ ix+strideX ] ) );
443-
s2 = float64ToFloat32( s2 + absf( x[ ix+(2*strideX) ] ) );
444-
s3 = float64ToFloat32( s3 + absf( x[ ix+(3*strideX) ] ) );
445-
s4 = float64ToFloat32( s4 + absf( x[ ix+(4*strideX) ] ) );
446-
s5 = float64ToFloat32( s5 + absf( x[ ix+(5*strideX) ] ) );
447-
s6 = float64ToFloat32( s6 + absf( x[ ix+(6*strideX) ] ) );
448-
s7 = float64ToFloat32( s7 + absf( x[ ix+(7*strideX) ] ) );
441+
s0 = f32( s0 + absf( x[ ix ] ) );
442+
s1 = f32( s1 + absf( x[ ix+strideX ] ) );
443+
s2 = f32( s2 + absf( x[ ix+(2*strideX) ] ) );
444+
s3 = f32( s3 + absf( x[ ix+(3*strideX) ] ) );
445+
s4 = f32( s4 + absf( x[ ix+(4*strideX) ] ) );
446+
s5 = f32( s5 + absf( x[ ix+(5*strideX) ] ) );
447+
s6 = f32( s6 + absf( x[ ix+(6*strideX) ] ) );
448+
s7 = f32( s7 + absf( x[ ix+(7*strideX) ] ) );
449449
ix += 8 * strideX;
450450
}
451451
// Pairwise sum the accumulators:
452-
s = float64ToFloat32( float64ToFloat32( float64ToFloat32(s0+s1) + float64ToFloat32(s2+s3) ) + float64ToFloat32( float64ToFloat32(s4+s5) + float64ToFloat32(s6+s7) ) ); // eslint-disable-line max-len
452+
s = f32( f32( f32(s0+s1) + f32(s2+s3) ) + f32( f32(s4+s5) + f32(s6+s7) ) ); // eslint-disable-line max-len
453453
&nbsp;
454454
// Clean-up loop...
455455
for ( i; i &lt; N; i++ ) {
456-
s = float64ToFloat32( s + absf( x[ ix ] ) );
456+
s = f32( s + absf( x[ ix ] ) );
457457
ix += strideX;
458458
}
459459
return s;
460460
}
461461
// Recurse by dividing by two, but avoiding non-multiples of unroll factor...
462462
n = floor( N/2 );
463463
n -= n % 8;
464-
return float64ToFloat32( sasumpw( n, x, strideX, ix ) + sasumpw( N-n, x, strideX, ix+(n*strideX) ) ); // eslint-disable-line max-len
464+
return f32( sasumpw( n, x, strideX, ix ) + sasumpw( N-n, x, strideX, ix+(n*strideX) ) ); // eslint-disable-line max-len
465465
}
466466
&nbsp;
467467
&nbsp;
@@ -475,7 +475,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
475475
<div class='footer quiet pad2 space-top1 center small'>
476476
Code coverage generated by
477477
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
478-
at 2025-01-17T23:11:56.711Z
478+
at 2025-06-05T02:46:53.422Z
479479
</div>
480480
<script src="../../../../../prettify.js"></script>
481481
<script>

blas/ext/base/sasumpw/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 2025-01-17T23:11:56.711Z
229+
at 2025-06-05T02:46:53.422Z
230230
</div>
231231
<script src="../../../../../prettify.js"></script>
232232
<script>

blas/ext/base/sasumpw/sasumpw.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 2025-01-17T23:11:56.711Z
253+
at 2025-06-05T02:46:53.422Z
254254
</div>
255255
<script src="../../../../../prettify.js"></script>
256256
<script>

blas/ext/base/sasumpw/sasumpw.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 2025-01-17T23:11:56.711Z
226+
at 2025-06-05T02:46:53.422Z
227227
</div>
228228
<script src="../../../../../prettify.js"></script>
229229
<script>

0 commit comments

Comments
 (0)