Skip to content

Commit 312c02e

Browse files
committed
Update artifacts
1 parent 85e126d commit 312c02e

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

blas/base/srotg/assign.js.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
5757
<template id="filterTemplate">
5858
<div class="quiet">
5959
Filter:
60-
<input oninput="onInput()" type="search" id="fileSearch">
60+
<input type="search" id="fileSearch">
6161
</div>
6262
</template>
6363
</div>
@@ -275,7 +275,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
275275
&nbsp;
276276
// MODULES //
277277
&nbsp;
278-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
278+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
279279
var absf = require( '@stdlib/math/base/special/absf' );
280280
var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
281281
var abs2f = require( '@stdlib/math/base/special/abs2f' );
@@ -317,22 +317,22 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
317317
} else {
318318
sign = copysignf( 1.0, b );
319319
}
320-
scale = float64ToFloat32( aa + ab );
320+
scale = f32( aa + ab );
321321
if ( scale === 0.0 ) {
322322
c = 1.0;
323323
s = 0.0;
324324
r = 0.0;
325325
z = 0.0;
326326
} else {
327-
r = float64ToFloat32( scale * sqrtf( float64ToFloat32( abs2f( float64ToFloat32( a/scale ) ) + abs2f( float64ToFloat32( b/scale ) ) ) ) ); // eslint-disable-line max-len
328-
r = float64ToFloat32( r * sign );
329-
c = float64ToFloat32( a / r );
330-
s = float64ToFloat32( b / r );
327+
r = f32( scale * sqrtf( f32( abs2f( f32( a/scale ) ) + abs2f( f32( b/scale ) ) ) ) ); // eslint-disable-line max-len
328+
r = f32( r * sign );
329+
c = f32( a / r );
330+
s = f32( b / r );
331331
z = 1.0;
332332
if ( aa &gt; ab ) {
333333
z = s;
334334
} else if ( c !== 0.0 ) {
335-
z = float64ToFloat32( 1.0 / c );
335+
z = f32( 1.0 / c );
336336
}
337337
}
338338
a = r;
@@ -355,7 +355,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
355355
<div class='footer quiet pad2 space-top1 center small'>
356356
Code coverage generated by
357357
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
358-
at 2023-12-04T04:45:31.716Z
358+
at 2025-06-05T02:58:02.919Z
359359
</div>
360360
<script src="../../../../prettify.js"></script>
361361
<script>

blas/base/srotg/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
[207,207,100,12,12,100,2,2,100,207,207,100,"a451cbb20325ba06901c326b4576e24a7c7d8b1b","2023-12-03 20:41:29 -0800"]
2+
[207,207,100,12,12,100,2,2,100,207,207,100,"5c6db32796b7e3dab9871a5e3587b3f0ce5453dc","2025-06-04 19:51:20 -0700"]

blas/base/srotg/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/srotg/lib</h1>
5757
<template id="filterTemplate">
5858
<div class="quiet">
5959
Filter:
60-
<input oninput="onInput()" type="search" id="fileSearch">
60+
<input type="search" id="fileSearch">
6161
</div>
6262
</template>
6363
</div>
@@ -131,7 +131,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/srotg/lib</h1>
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2023-12-04T04:45:31.716Z
134+
at 2025-06-05T02:58:02.919Z
135135
</div>
136136
<script src="../../../../prettify.js"></script>
137137
<script>

blas/base/srotg/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
5757
<template id="filterTemplate">
5858
<div class="quiet">
5959
Filter:
60-
<input oninput="onInput()" type="search" id="fileSearch">
60+
<input type="search" id="fileSearch">
6161
</div>
6262
</template>
6363
</div>
@@ -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 2023-12-04T04:45:31.716Z
265+
at 2025-06-05T02:58:02.919Z
266266
</div>
267267
<script src="../../../../prettify.js"></script>
268268
<script>

blas/base/srotg/main.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
5757
<template id="filterTemplate">
5858
<div class="quiet">
5959
Filter:
60-
<input oninput="onInput()" type="search" id="fileSearch">
60+
<input type="search" id="fileSearch">
6161
</div>
6262
</template>
6363
</div>
@@ -214,7 +214,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
214214
<div class='footer quiet pad2 space-top1 center small'>
215215
Code coverage generated by
216216
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
217-
at 2023-12-04T04:45:31.716Z
217+
at 2025-06-05T02:58:02.919Z
218218
</div>
219219
<script src="../../../../prettify.js"></script>
220220
<script>

0 commit comments

Comments
 (0)