Skip to content

Commit 85e126d

Browse files
committed
Update artifacts
1 parent beed1af commit 85e126d

File tree

9 files changed

+16
-15
lines changed

9 files changed

+16
-15
lines changed

blas/base/saxpy/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
[436,436,100,30,30,100,4,4,100,436,436,100,"44ebe3cfc43a0518991823f98e2e6d96632a0d26","2024-09-10 00:49:54 -0700"]
88
[425,425,100,30,30,100,4,4,100,425,425,100,"e85f3947aaca3cbbd6ab4f84e41577928e0a10a4","2024-09-18 14:31:58 -0700"]
99
[425,425,100,30,30,100,4,4,100,425,425,100,"dbb338e80336515e9f7ef602188985bbbe9b9010","2025-01-10 22:22:15 -0500"]
10+
[425,425,100,30,30,100,4,4,100,425,425,100,"02183ed3e98014c54c9331e6ce9797526de18122","2025-06-04 19:50:03 -0700"]

blas/base/saxpy/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/base/saxpy/lib</h1>
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-11T03:24:24.616Z
194+
at 2025-06-05T02:57:39.025Z
195195
</div>
196196
<script src="../../../../prettify.js"></script>
197197
<script>

blas/base/saxpy/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
286286
<div class='footer quiet pad2 space-top1 center small'>
287287
Code coverage generated by
288288
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
289-
at 2025-01-11T03:24:24.616Z
289+
at 2025-06-05T02:57:39.025Z
290290
</div>
291291
<script src="../../../../prettify.js"></script>
292292
<script>

blas/base/saxpy/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">blas/b
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-11T03:24:24.616Z
178+
at 2025-06-05T02:57:39.025Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/saxpy/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">blas/b
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-11T03:24:24.616Z
178+
at 2025-06-05T02:57:39.025Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/saxpy/ndarray.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
291291
&nbsp;
292292
// MODULES //
293293
&nbsp;
294-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
294+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
295295
&nbsp;
296296
&nbsp;
297297
// VARIABLES //
@@ -342,7 +342,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
342342
// If we have a remainder, run a clean-up loop...
343343
if ( m &gt; 0 ) {
344344
for ( i = 0; i &lt; m; i++ ) {
345-
y[ iy ] += float64ToFloat32( alpha * x[ ix ] );
345+
y[ iy ] += f32( alpha * x[ ix ] );
346346
ix += strideX;
347347
iy += strideY;
348348
}
@@ -351,17 +351,17 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
351351
return y;
352352
}
353353
for ( i = m; i &lt; N; i += M ) {
354-
y[ iy ] += float64ToFloat32( alpha * x[ ix ] );
355-
y[ iy+1 ] += float64ToFloat32( alpha * x[ ix+1 ] );
356-
y[ iy+2 ] += float64ToFloat32( alpha * x[ ix+2 ] );
357-
y[ iy+3 ] += float64ToFloat32( alpha * x[ ix+3 ] );
354+
y[ iy ] += f32( alpha * x[ ix ] );
355+
y[ iy+1 ] += f32( alpha * x[ ix+1 ] );
356+
y[ iy+2 ] += f32( alpha * x[ ix+2 ] );
357+
y[ iy+3 ] += f32( alpha * x[ ix+3 ] );
358358
ix += M;
359359
iy += M;
360360
}
361361
return y;
362362
}
363363
for ( i = 0; i &lt; N; i++ ) {
364-
y[ iy ] += float64ToFloat32( alpha * x[ ix ] );
364+
y[ iy ] += f32( alpha * x[ ix ] );
365365
ix += strideX;
366366
iy += strideY;
367367
}
@@ -379,7 +379,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
379379
<div class='footer quiet pad2 space-top1 center small'>
380380
Code coverage generated by
381381
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
382-
at 2025-01-11T03:24:24.616Z
382+
at 2025-06-05T02:57:39.025Z
383383
</div>
384384
<script src="../../../../prettify.js"></script>
385385
<script>

blas/base/saxpy/ndarray.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
247247
<div class='footer quiet pad2 space-top1 center small'>
248248
Code coverage generated by
249249
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
250-
at 2025-01-11T03:24:24.616Z
250+
at 2025-06-05T02:57:39.025Z
251251
</div>
252252
<script src="../../../../prettify.js"></script>
253253
<script>

blas/base/saxpy/saxpy.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
262262
<div class='footer quiet pad2 space-top1 center small'>
263263
Code coverage generated by
264264
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
265-
at 2025-01-11T03:24:24.616Z
265+
at 2025-06-05T02:57:39.025Z
266266
</div>
267267
<script src="../../../../prettify.js"></script>
268268
<script>

blas/base/saxpy/saxpy.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
241241
<div class='footer quiet pad2 space-top1 center small'>
242242
Code coverage generated by
243243
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
244-
at 2025-01-11T03:24:24.616Z
244+
at 2025-06-05T02:57:39.025Z
245245
</div>
246246
<script src="../../../../prettify.js"></script>
247247
<script>

0 commit comments

Comments
 (0)