Skip to content

Commit 6440543

Browse files
committed
Update artifacts
1 parent 6649a12 commit 6440543

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

blas/base/icamax/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[231,231,100,15,15,100,2,2,100,231,231,100,"aad76293e1585dd25980fdda9cf534b003c8af50","2025-06-13 08:22:34 +0000"]
1+
[231,231,100,15,15,100,2,2,100,231,231,100,"c218d9410b625fe931c0e168b79f5edc7457229c","2025-06-13 16:23:34 +0530"]

blas/base/icamax/icamax.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
229229
<div class='footer quiet pad2 space-top1 center small'>
230230
Code coverage generated by
231231
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
232-
at 2025-06-13T08:24:20.242Z
232+
at 2025-06-13T10:54:37.817Z
233233
</div>
234234
<script src="../../../../prettify.js"></script>
235235
<script>

blas/base/icamax/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/icamax/lib</h1>
146146
<div class='footer quiet pad2 space-top1 center small'>
147147
Code coverage generated by
148148
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
149-
at 2025-06-13T08:24:20.242Z
149+
at 2025-06-13T10:54:37.817Z
150150
</div>
151151
<script src="../../../../prettify.js"></script>
152152
<script>

blas/base/icamax/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">blas/b
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-06-13T08:24:20.242Z
277+
at 2025-06-13T10:54:37.817Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

blas/base/icamax/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-06-13T08:24:20.242Z
178+
at 2025-06-13T10:54:37.817Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/icamax/ndarray.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
258258
* // returns 1
259259
*/
260260
function icamax( N, x, strideX, offsetX ) {
261-
var cmax;
261+
var max;
262262
var ix;
263263
var v;
264264
var y;
@@ -271,13 +271,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
271271
if ( N === 1 ) {
272272
return y;
273273
}
274-
cmax = scabs1( x.get( offsetX ) );
274+
max = scabs1( x.get( offsetX ) );
275275
ix = offsetX + strideX;
276276
for ( i = 1; i &lt; N; i++ ) {
277277
v = scabs1( x.get( ix ) );
278-
if ( v &gt; cmax ) {
278+
if ( v &gt; max ) {
279279
y = i;
280-
cmax = v;
280+
max = v;
281281
}
282282
ix += strideX;
283283
}
@@ -295,7 +295,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
295295
<div class='footer quiet pad2 space-top1 center small'>
296296
Code coverage generated by
297297
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
298-
at 2025-06-13T08:24:20.242Z
298+
at 2025-06-13T10:54:37.817Z
299299
</div>
300300
<script src="../../../../prettify.js"></script>
301301
<script>

0 commit comments

Comments
 (0)