Skip to content

Commit 09cad8d

Browse files
committed
Update artifacts
1 parent ab04720 commit 09cad8d

File tree

9 files changed

+15
-14
lines changed

9 files changed

+15
-14
lines changed

blas/ext/base/scusumkbn/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
[413,413,100,19,19,100,4,4,100,413,413,100,"aca04f8b4bd9c850d9b66a253647bac5b84c63fb","2025-01-17 15:51:54 -0800"]
33
[428,428,100,25,25,100,4,4,100,428,428,100,"9cb8df6d6c62cb49e58261cd67a44db8b7872087","2025-04-24 22:45:35 -0700"]
44
[429,429,100,25,25,100,4,4,100,429,429,100,"82cb82cdb7d261071eaa4a827cc261d362c6cb62","2025-04-24 23:31:26 -0700"]
5+
[429,429,100,25,25,100,4,4,100,429,429,100,"4dd744c4f9e9b088b6ec33e7d45c4b7280c86d2d","2025-06-04 19:43:58 -0700"]

blas/ext/base/scusumkbn/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/scusumkbn/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 2025-04-25T06:35:42.934Z
194+
at 2025-06-05T02:45:26.570Z
195195
</div>
196196
<script src="../../../../../prettify.js"></script>
197197
<script>

blas/ext/base/scusumkbn/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:35:42.934Z
283+
at 2025-06-05T02:45:26.570Z
284284
</div>
285285
<script src="../../../../../prettify.js"></script>
286286
<script>

blas/ext/base/scusumkbn/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:35:42.934Z
178+
at 2025-06-05T02:45:26.570Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/scusumkbn/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:35:42.934Z
178+
at 2025-06-05T02:45:26.570Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
305305
&nbsp;
306306
// MODULES //
307307
&nbsp;
308-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
308+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
309309
var abs = require( '@stdlib/math/base/special/abs' );
310310
&nbsp;
311311
&nbsp;
@@ -364,7 +364,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
364364
if ( v !== 0.0 ) {
365365
break;
366366
}
367-
s = float64ToFloat32( s + v );
367+
s = f32( s + v );
368368
y[ iy ] = s;
369369
ix += strideX;
370370
iy += strideY;
@@ -375,14 +375,14 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
375375
c = 0.0;
376376
for ( ; i &lt; N; i++ ) {
377377
v = x[ ix ];
378-
t = float64ToFloat32( s + v );
378+
t = f32( s + v );
379379
if ( abs( s ) &gt;= abs( v ) ) {
380-
c = float64ToFloat32( c + float64ToFloat32( float64ToFloat32( s - t ) + v ) ); // eslint-disable-line max-len
380+
c = f32( c + f32( f32( s - t ) + v ) );
381381
} else {
382-
c = float64ToFloat32( c + float64ToFloat32( float64ToFloat32( v - t ) + s ) ); // eslint-disable-line max-len
382+
c = f32( c + f32( f32( v - t ) + s ) );
383383
}
384384
s = t;
385-
y[ iy ] = float64ToFloat32( s + c );
385+
y[ iy ] = f32( s + c );
386386
ix += strideX;
387387
iy += strideY;
388388
}
@@ -400,7 +400,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
400400
<div class='footer quiet pad2 space-top1 center small'>
401401
Code coverage generated by
402402
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
403-
at 2025-04-25T06:35:42.934Z
403+
at 2025-06-05T02:45:26.570Z
404404
</div>
405405
<script src="../../../../../prettify.js"></script>
406406
<script>

blas/ext/base/scusumkbn/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:35:42.934Z
247+
at 2025-06-05T02:45:26.570Z
248248
</div>
249249
<script src="../../../../../prettify.js"></script>
250250
<script>

blas/ext/base/scusumkbn/scusumkbn.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:35:42.934Z
268+
at 2025-06-05T02:45:26.570Z
269269
</div>
270270
<script src="../../../../../prettify.js"></script>
271271
<script>

blas/ext/base/scusumkbn/scusumkbn.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:35:42.934Z
241+
at 2025-06-05T02:45:26.570Z
242242
</div>
243243
<script src="../../../../../prettify.js"></script>
244244
<script>

0 commit comments

Comments
 (0)