Skip to content

Commit 3879949

Browse files
committed
Update artifacts
1 parent df49001 commit 3879949

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+800
-394
lines changed

ndarray/base/every/0d.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
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-03-30T10:16:54.959Z
298+
at 2025-03-30T11:54:15.849Z
299299
</div>
300300
<script src="../../../../prettify.js"></script>
301301
<script>

ndarray/base/every/0d_accessors.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
304304
<div class='footer quiet pad2 space-top1 center small'>
305305
Code coverage generated by
306306
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
307-
at 2025-03-30T10:16:54.959Z
307+
at 2025-03-30T11:54:15.849Z
308308
</div>
309309
<script src="../../../../prettify.js"></script>
310310
<script>

ndarray/base/every/0d_complex.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
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-03-30T10:16:54.959Z
298+
at 2025-03-30T11:54:15.849Z
299299
</div>
300300
<script src="../../../../prettify.js"></script>
301301
<script>

ndarray/base/every/10d.js.html

Lines changed: 22 additions & 7 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">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">35.67% </span>
26+
<span class="strong">37.25% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>71/199</span>
28+
<span class='fraction'>76/204</span>
2929
</div>
3030

3131

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

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">35.67% </span>
47+
<span class="strong">37.25% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>71/199</span>
49+
<span class='fraction'>76/204</span>
5050
</div>
5151

5252

@@ -262,7 +262,17 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
262262
<a name='L197'></a><a href='#L197'>197</a>
263263
<a name='L198'></a><a href='#L198'>198</a>
264264
<a name='L199'></a><a href='#L199'>199</a>
265-
<a name='L200'></a><a href='#L200'>200</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
265+
<a name='L200'></a><a href='#L200'>200</a>
266+
<a name='L201'></a><a href='#L201'>201</a>
267+
<a name='L202'></a><a href='#L202'>202</a>
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">2x</span>
271+
<span class="cline-any cline-yes">2x</span>
272+
<span class="cline-any cline-yes">2x</span>
273+
<span class="cline-any cline-yes">2x</span>
274+
<span class="cline-any cline-yes">2x</span>
275+
<span class="cline-any cline-yes">2x</span>
266276
<span class="cline-any cline-yes">2x</span>
267277
<span class="cline-any cline-yes">2x</span>
268278
<span class="cline-any cline-yes">2x</span>
@@ -483,6 +493,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
483493
&nbsp;
484494
'use strict';
485495
&nbsp;
496+
// MODULES //
497+
&nbsp;
498+
var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major-string' );
499+
&nbsp;
500+
&nbsp;
486501
// MAIN //
487502
&nbsp;
488503
/**
@@ -568,7 +583,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
568583
<span class="cstat-no" title="statement not covered" > // Extract loop variables for purposes of loop interchange: dimensions and loop offset (pointer) increments...</span>
569584
<span class="cstat-no" title="statement not covered" > sh = x.shape;</span>
570585
<span class="cstat-no" title="statement not covered" > sx = x.strides;</span>
571-
<span class="cstat-no" title="statement not covered" > if ( x.order === 'row-major' ) {</span>
586+
<span class="cstat-no" title="statement not covered" > if ( isRowMajor( x.order ) ) {</span>
572587
<span class="cstat-no" title="statement not covered" > // For row-major ndarrays, the last dimensions have the fastest changing indices...</span>
573588
<span class="cstat-no" title="statement not covered" > S0 = sh[ 9 ];</span>
574589
<span class="cstat-no" title="statement not covered" > S1 = sh[ 8 ];</span>
@@ -667,7 +682,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
667682
<div class='footer quiet pad2 space-top1 center small'>
668683
Code coverage generated by
669684
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
670-
at 2025-03-30T10:16:54.959Z
685+
at 2025-03-30T11:54:15.849Z
671686
</div>
672687
<script src="../../../../prettify.js"></script>
673688
<script>

ndarray/base/every/10d_accessors.js.html

Lines changed: 22 additions & 7 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">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">35.92% </span>
26+
<span class="strong">37.44% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>74/206</span>
28+
<span class='fraction'>79/211</span>
2929
</div>
3030

3131

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

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">35.92% </span>
47+
<span class="strong">37.44% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>74/206</span>
49+
<span class='fraction'>79/211</span>
5050
</div>
5151

5252

@@ -269,7 +269,17 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
269269
<a name='L204'></a><a href='#L204'>204</a>
270270
<a name='L205'></a><a href='#L205'>205</a>
271271
<a name='L206'></a><a href='#L206'>206</a>
272-
<a name='L207'></a><a href='#L207'>207</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
272+
<a name='L207'></a><a href='#L207'>207</a>
273+
<a name='L208'></a><a href='#L208'>208</a>
274+
<a name='L209'></a><a href='#L209'>209</a>
275+
<a name='L210'></a><a href='#L210'>210</a>
276+
<a name='L211'></a><a href='#L211'>211</a>
277+
<a name='L212'></a><a href='#L212'>212</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
278+
<span class="cline-any cline-yes">2x</span>
279+
<span class="cline-any cline-yes">2x</span>
280+
<span class="cline-any cline-yes">2x</span>
281+
<span class="cline-any cline-yes">2x</span>
282+
<span class="cline-any cline-yes">2x</span>
273283
<span class="cline-any cline-yes">2x</span>
274284
<span class="cline-any cline-yes">2x</span>
275285
<span class="cline-any cline-yes">2x</span>
@@ -497,6 +507,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
497507
&nbsp;
498508
'use strict';
499509
&nbsp;
510+
// MODULES //
511+
&nbsp;
512+
var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major-string' );
513+
&nbsp;
514+
&nbsp;
500515
// MAIN //
501516
&nbsp;
502517
/**
@@ -586,7 +601,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
586601
<span class="cstat-no" title="statement not covered" > // Extract loop variables for purposes of loop interchange: dimensions and loop offset (pointer) increments...</span>
587602
<span class="cstat-no" title="statement not covered" > sh = x.shape;</span>
588603
<span class="cstat-no" title="statement not covered" > sx = x.strides;</span>
589-
<span class="cstat-no" title="statement not covered" > if ( x.order === 'row-major' ) {</span>
604+
<span class="cstat-no" title="statement not covered" > if ( isRowMajor( x.order ) ) {</span>
590605
<span class="cstat-no" title="statement not covered" > // For row-major ndarrays, the last dimensions have the fastest changing indices...</span>
591606
<span class="cstat-no" title="statement not covered" > S0 = sh[ 9 ];</span>
592607
<span class="cstat-no" title="statement not covered" > S1 = sh[ 8 ];</span>
@@ -688,7 +703,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
688703
<div class='footer quiet pad2 space-top1 center small'>
689704
Code coverage generated by
690705
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
691-
at 2025-03-30T10:16:54.959Z
706+
at 2025-03-30T11:54:15.849Z
692707
</div>
693708
<script src="../../../../prettify.js"></script>
694709
<script>

ndarray/base/every/10d_blocked.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
982982
<div class='footer quiet pad2 space-top1 center small'>
983983
Code coverage generated by
984984
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
985-
at 2025-03-30T10:16:54.959Z
985+
at 2025-03-30T11:54:15.849Z
986986
</div>
987987
<script src="../../../../prettify.js"></script>
988988
<script>

ndarray/base/every/10d_blocked_accessors.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
10031003
<div class='footer quiet pad2 space-top1 center small'>
10041004
Code coverage generated by
10051005
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1006-
at 2025-03-30T10:16:54.959Z
1006+
at 2025-03-30T11:54:15.849Z
10071007
</div>
10081008
<script src="../../../../prettify.js"></script>
10091009
<script>

ndarray/base/every/10d_blocked_complex.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
982982
<div class='footer quiet pad2 space-top1 center small'>
983983
Code coverage generated by
984984
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
985-
at 2025-03-30T10:16:54.959Z
985+
at 2025-03-30T11:54:15.849Z
986986
</div>
987987
<script src="../../../../prettify.js"></script>
988988
<script>

ndarray/base/every/10d_complex.js.html

Lines changed: 22 additions & 7 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">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">35.67% </span>
26+
<span class="strong">37.25% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>71/199</span>
28+
<span class='fraction'>76/204</span>
2929
</div>
3030

3131

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

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">35.67% </span>
47+
<span class="strong">37.25% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>71/199</span>
49+
<span class='fraction'>76/204</span>
5050
</div>
5151

5252

@@ -262,7 +262,17 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
262262
<a name='L197'></a><a href='#L197'>197</a>
263263
<a name='L198'></a><a href='#L198'>198</a>
264264
<a name='L199'></a><a href='#L199'>199</a>
265-
<a name='L200'></a><a href='#L200'>200</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
265+
<a name='L200'></a><a href='#L200'>200</a>
266+
<a name='L201'></a><a href='#L201'>201</a>
267+
<a name='L202'></a><a href='#L202'>202</a>
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">2x</span>
271+
<span class="cline-any cline-yes">2x</span>
272+
<span class="cline-any cline-yes">2x</span>
273+
<span class="cline-any cline-yes">2x</span>
274+
<span class="cline-any cline-yes">2x</span>
275+
<span class="cline-any cline-yes">2x</span>
266276
<span class="cline-any cline-yes">2x</span>
267277
<span class="cline-any cline-yes">2x</span>
268278
<span class="cline-any cline-yes">2x</span>
@@ -483,6 +493,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
483493
&nbsp;
484494
'use strict';
485495
&nbsp;
496+
// MODULES //
497+
&nbsp;
498+
var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major-string' );
499+
&nbsp;
500+
&nbsp;
486501
// MAIN //
487502
&nbsp;
488503
/**
@@ -568,7 +583,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
568583
<span class="cstat-no" title="statement not covered" > // Extract loop variables for purposes of loop interchange: dimensions and loop offset (pointer) increments...</span>
569584
<span class="cstat-no" title="statement not covered" > sh = x.shape;</span>
570585
<span class="cstat-no" title="statement not covered" > sx = x.strides;</span>
571-
<span class="cstat-no" title="statement not covered" > if ( x.order === 'row-major' ) {</span>
586+
<span class="cstat-no" title="statement not covered" > if ( isRowMajor( x.order ) ) {</span>
572587
<span class="cstat-no" title="statement not covered" > // For row-major ndarrays, the last dimensions have the fastest changing indices...</span>
573588
<span class="cstat-no" title="statement not covered" > S0 = sh[ 9 ];</span>
574589
<span class="cstat-no" title="statement not covered" > S1 = sh[ 8 ];</span>
@@ -667,7 +682,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
667682
<div class='footer quiet pad2 space-top1 center small'>
668683
Code coverage generated by
669684
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
670-
at 2025-03-30T10:16:54.959Z
685+
at 2025-03-30T11:54:15.849Z
671686
</div>
672687
<script src="../../../../prettify.js"></script>
673688
<script>

ndarray/base/every/1d.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
361361
<div class='footer quiet pad2 space-top1 center small'>
362362
Code coverage generated by
363363
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
364-
at 2025-03-30T10:16:54.959Z
364+
at 2025-03-30T11:54:15.849Z
365365
</div>
366366
<script src="../../../../prettify.js"></script>
367367
<script>

0 commit comments

Comments
 (0)