Skip to content

Commit 7050670

Browse files
committed
Update artifacts
1 parent 424d4a6 commit 7050670

File tree

12 files changed

+74
-60
lines changed

12 files changed

+74
-60
lines changed

blas/ext/index-of/assign.js.html

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">97.3% </span>
26+
<span class="strong">97.33% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>217/223</span>
28+
<span class='fraction'>219/225</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">97.3% </span>
47+
<span class="strong">97.33% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>217/223</span>
49+
<span class='fraction'>219/225</span>
5050
</div>
5151

5252

@@ -286,7 +286,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
286286
<a name='L221'></a><a href='#L221'>221</a>
287287
<a name='L222'></a><a href='#L222'>222</a>
288288
<a name='L223'></a><a href='#L223'>223</a>
289-
<a name='L224'></a><a href='#L224'>224</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
289+
<a name='L224'></a><a href='#L224'>224</a>
290+
<a name='L225'></a><a href='#L225'>225</a>
291+
<a name='L226'></a><a href='#L226'>226</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
290292
<span class="cline-any cline-yes">3x</span>
291293
<span class="cline-any cline-yes">3x</span>
292294
<span class="cline-any cline-yes">3x</span>
@@ -477,12 +479,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
477479
<span class="cline-any cline-yes">61x</span>
478480
<span class="cline-any cline-yes">61x</span>
479481
<span class="cline-any cline-yes">268x</span>
482+
<span class="cline-any cline-yes">113x</span>
480483
<span class="cline-any cline-yes">61x</span>
481484
<span class="cline-any cline-yes">61x</span>
482-
<span class="cline-any cline-yes">76x</span>
483-
<span class="cline-any cline-yes">268x</span>
485+
<span class="cline-any cline-yes">52x</span>
486+
<span class="cline-any cline-yes">113x</span>
484487
<span class="cline-any cline-yes">21x</span>
485488
<span class="cline-any cline-yes">21x</span>
489+
<span class="cline-any cline-yes">113x</span>
486490
<span class="cline-any cline-yes">76x</span>
487491
<span class="cline-any cline-yes">76x</span>
488492
<span class="cline-any cline-yes">268x</span>
@@ -561,7 +565,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
561565
* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
562566
* @param {ndarrayLike} out - output ndarray
563567
* @param {Options} [options] - function options
564-
* @param {IntegerArray} [options.dim=-1] - dimension over which to perform operation
568+
* @param {integer} [options.dim=-1] - dimension over which to perform operation
565569
* @throws {TypeError} function must be provided at least three arguments
566570
* @throws {TypeError} first argument must be an ndarray-like object
567571
* @throws {TypeError} third argument must be either an ndarray-like object or an integer
@@ -699,12 +703,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
699703
options = arguments[ 4 ];
700704
hasOptions = true;
701705
}
702-
if ( hasOptions &amp;&amp; !isPlainObject( options ) ) {
703-
throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
704-
}
705-
// Resolve provided options...
706-
if ( hasOwnProp( options, 'dim' ) ) {
707-
opts.dims[ 0 ] = options.dim;
706+
if ( hasOptions ) {
707+
if ( !isPlainObject( options ) ) {
708+
throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
709+
}
710+
// Resolve provided options...
711+
if ( hasOwnProp( options, 'dim' ) ) {
712+
opts.dims[ 0 ] = options.dim;
713+
}
708714
}
709715
// Resolve the list of non-reduced dimensions:
710716
sh = getShape( x );
@@ -739,7 +745,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
739745
<div class='footer quiet pad2 space-top1 center small'>
740746
Code coverage generated by
741747
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
742-
at 2025-07-23T02:30:58.252Z
748+
at 2025-07-24T22:14:50.906Z
743749
</div>
744750
<script src="../../../../prettify.js"></script>
745751
<script>

blas/ext/index-of/base.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
430430
<div class='footer quiet pad2 space-top1 center small'>
431431
Code coverage generated by
432432
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
433-
at 2025-07-23T02:30:58.252Z
433+
at 2025-07-24T22:14:50.906Z
434434
</div>
435435
<script src="../../../../prettify.js"></script>
436436
<script>

blas/ext/index-of/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
[656,666,98.4985,74,78,94.8718,3,3,100,656,666,98.4985,"cf8cf0ac2b13ca1d2feb416e87154f713a37e507","2025-07-22 19:29:09 -0700"]
2+
[660,670,98.5075,74,78,94.8718,3,3,100,660,670,98.5075,"8f7d73543738d3f186c4b404019873c0a5113550","2025-07-24 17:13:38 -0500"]

blas/ext/index-of/index.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> blas/ext/index-of/lib</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">98.49% </span>
26+
<span class="strong">98.5% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>656/666</span>
28+
<span class='fraction'>660/670</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> blas/ext/index-of/lib</h1>
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">98.49% </span>
47+
<span class="strong">98.5% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>656/666</span>
49+
<span class='fraction'>660/670</span>
5050
</div>
5151

5252

@@ -80,17 +80,17 @@ <h1><a href="../../../../index.html">All files</a> blas/ext/index-of/lib</h1>
8080
</thead>
8181
<tbody><tr>
8282
<td class="file high" data-value="assign.js"><a href="assign.js.html">assign.js</a></td>
83-
<td data-value="97.3" class="pic high">
83+
<td data-value="97.33" class="pic high">
8484
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
8585
</td>
86-
<td data-value="97.3" class="pct high">97.3%</td>
87-
<td data-value="223" class="abs high">217/223</td>
86+
<td data-value="97.33" class="pct high">97.33%</td>
87+
<td data-value="225" class="abs high">219/225</td>
8888
<td data-value="94.44" class="pct high">94.44%</td>
8989
<td data-value="36" class="abs high">34/36</td>
9090
<td data-value="100" class="pct high">100%</td>
9191
<td data-value="1" class="abs high">1/1</td>
92-
<td data-value="97.3" class="pct high">97.3%</td>
93-
<td data-value="223" class="abs high">217/223</td>
92+
<td data-value="97.33" class="pct high">97.33%</td>
93+
<td data-value="225" class="abs high">219/225</td>
9494
</tr>
9595

9696
<tr>
@@ -125,17 +125,17 @@ <h1><a href="../../../../index.html">All files</a> blas/ext/index-of/lib</h1>
125125

126126
<tr>
127127
<td class="file high" data-value="main.js"><a href="main.js.html">main.js</a></td>
128-
<td data-value="98.01" class="pic high">
128+
<td data-value="98.03" class="pic high">
129129
<div class="chart"><div class="cover-fill" style="width: 98%"></div><div class="cover-empty" style="width: 2%"></div></div>
130130
</td>
131-
<td data-value="98.01" class="pct high">98.01%</td>
132-
<td data-value="202" class="abs high">198/202</td>
131+
<td data-value="98.03" class="pct high">98.03%</td>
132+
<td data-value="204" class="abs high">200/204</td>
133133
<td data-value="94.44" class="pct high">94.44%</td>
134134
<td data-value="36" class="abs high">34/36</td>
135135
<td data-value="100" class="pct high">100%</td>
136136
<td data-value="1" class="abs high">1/1</td>
137-
<td data-value="98.01" class="pct high">98.01%</td>
138-
<td data-value="202" class="abs high">198/202</td>
137+
<td data-value="98.03" class="pct high">98.03%</td>
138+
<td data-value="204" class="abs high">200/204</td>
139139
</tr>
140140

141141
<tr>
@@ -161,7 +161,7 @@ <h1><a href="../../../../index.html">All files</a> blas/ext/index-of/lib</h1>
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-07-23T02:30:58.252Z
164+
at 2025-07-24T22:14:50.906Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/ext/index-of/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
283283
<div class='footer quiet pad2 space-top1 center small'>
284284
Code coverage generated by
285285
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
286-
at 2025-07-23T02:30:58.252Z
286+
at 2025-07-24T22:14:50.906Z
287287
</div>
288288
<script src="../../../../prettify.js"></script>
289289
<script>

blas/ext/index-of/main.js.html

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">98.01% </span>
26+
<span class="strong">98.03% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>198/202</span>
28+
<span class='fraction'>200/204</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">98.01% </span>
47+
<span class="strong">98.03% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>198/202</span>
49+
<span class='fraction'>200/204</span>
5050
</div>
5151

5252

@@ -265,7 +265,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
265265
<a name='L200'></a><a href='#L200'>200</a>
266266
<a name='L201'></a><a href='#L201'>201</a>
267267
<a name='L202'></a><a href='#L202'>202</a>
268-
<a name='L203'></a><a href='#L203'>203</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
268+
<a name='L203'></a><a href='#L203'>203</a>
269+
<a name='L204'></a><a href='#L204'>204</a>
270+
<a name='L205'></a><a href='#L205'>205</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
269271
<span class="cline-any cline-yes">3x</span>
270272
<span class="cline-any cline-yes">3x</span>
271273
<span class="cline-any cline-yes">3x</span>
@@ -429,18 +431,20 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
429431
<span class="cline-any cline-yes">52x</span>
430432
<span class="cline-any cline-yes">52x</span>
431433
<span class="cline-any cline-yes">233x</span>
434+
<span class="cline-any cline-yes">89x</span>
432435
<span class="cline-any cline-yes">52x</span>
433436
<span class="cline-any cline-yes">52x</span>
434-
<span class="cline-any cline-yes">51x</span>
435-
<span class="cline-any cline-yes">233x</span>
437+
<span class="cline-any cline-yes">37x</span>
438+
<span class="cline-any cline-yes">89x</span>
436439
<span class="cline-any cline-yes">21x</span>
437440
<span class="cline-any cline-yes">21x</span>
438-
<span class="cline-any cline-yes">233x</span>
441+
<span class="cline-any cline-yes">89x</span>
439442
<span class="cline-any cline-no">&nbsp;</span>
440443
<span class="cline-any cline-no">&nbsp;</span>
441-
<span class="cline-any cline-yes">233x</span>
444+
<span class="cline-any cline-yes">89x</span>
442445
<span class="cline-any cline-yes">6x</span>
443446
<span class="cline-any cline-yes">6x</span>
447+
<span class="cline-any cline-yes">89x</span>
444448
<span class="cline-any cline-yes">51x</span>
445449
<span class="cline-any cline-yes">51x</span>
446450
<span class="cline-any cline-yes">233x</span>
@@ -518,7 +522,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
518522
* @param {(ndarrayLike|*)} searchElement - search element
519523
* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
520524
* @param {Options} [options] - function options
521-
* @param {IntegerArray} [options.dim=-1] - dimension over which to perform operation
525+
* @param {integer} [options.dim=-1] - dimension over which to perform operation
522526
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
523527
* @param {string} [options.dtype] - output ndarray data type
524528
* @throws {TypeError} first argument must be an ndarray-like object
@@ -630,18 +634,20 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
630634
options = arguments[ 3 ];
631635
hasOptions = true;
632636
}
633-
if ( hasOptions &amp;&amp; !isPlainObject( options ) ) {
634-
throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
635-
}
636-
// Resolve provided options...
637-
if ( hasOwnProp( options, 'dim' ) ) {
638-
opts.dims[ 0 ] = options.dim;
639-
}
640-
if ( hasOwnProp( options, 'keepdims' ) ) <span class="branch-0 cbranch-no" title="branch not covered" >{</span>
641-
<span class="cstat-no" title="statement not covered" > opts.keepdims = options.keepdims;</span>
642-
<span class="cstat-no" title="statement not covered" > }</span>
643-
if ( hasOwnProp( options, 'dtype' ) ) {
644-
opts.dtype = options.dtype;
637+
if ( hasOptions ) {
638+
if ( !isPlainObject( options ) ) {
639+
throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
640+
}
641+
// Resolve provided options...
642+
if ( hasOwnProp( options, 'dim' ) ) {
643+
opts.dims[ 0 ] = options.dim;
644+
}
645+
if ( hasOwnProp( options, 'keepdims' ) ) <span class="branch-0 cbranch-no" title="branch not covered" >{</span>
646+
<span class="cstat-no" title="statement not covered" > opts.keepdims = options.keepdims;</span>
647+
<span class="cstat-no" title="statement not covered" > }</span>
648+
if ( hasOwnProp( options, 'dtype' ) ) {
649+
opts.dtype = options.dtype;
650+
}
645651
}
646652
// Resolve the list of non-reduced dimensions:
647653
sh = getShape( x );
@@ -676,7 +682,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
676682
<div class='footer quiet pad2 space-top1 center small'>
677683
Code coverage generated by
678684
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
679-
at 2025-07-23T02:30:58.252Z
685+
at 2025-07-24T22:14:50.906Z
680686
</div>
681687
<script src="../../../../prettify.js"></script>
682688
<script>

blas/ext/index-of/non_core_shape.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
220220
<div class='footer quiet pad2 space-top1 center small'>
221221
Code coverage generated by
222222
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
223-
at 2025-07-23T02:30:58.252Z
223+
at 2025-07-24T22:14:50.906Z
224224
</div>
225225
<script src="../../../../prettify.js"></script>
226226
<script>

math/base/special/sinpi/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
[210,210,100,20,20,100,2,2,100,210,210,100,"d9ad02ca1c902ca787d9e9135160871379e40829","2025-04-05 11:00:03 -0400"]
66
[210,210,100,20,20,100,2,2,100,210,210,100,"d0698415fd26eb45c1cab1e1be0e4551fdae5656","2025-04-10 20:39:17 -0700"]
77
[207,207,100,20,20,100,2,2,100,207,207,100,"5e6e13ba6193f5c392c24c247c94fbf7d82c647f","2025-07-22 20:52:00 +0530"]
8+
[207,207,100,20,20,100,2,2,100,207,207,100,"8f7d73543738d3f186c4b404019873c0a5113550","2025-07-24 17:13:38 -0500"]

math/base/special/sinpi/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/sinpi/li
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 2025-07-22T15:24:28.390Z
134+
at 2025-07-24T22:15:27.144Z
135135
</div>
136136
<script src="../../../../../prettify.js"></script>
137137
<script>

math/base/special/sinpi/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
217217
<div class='footer quiet pad2 space-top1 center small'>
218218
Code coverage generated by
219219
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
220-
at 2025-07-22T15:24:28.390Z
220+
at 2025-07-24T22:15:27.144Z
221221
</div>
222222
<script src="../../../../../prettify.js"></script>
223223
<script>

0 commit comments

Comments
 (0)