Skip to content

Commit 7dc319b

Browse files
committed
Update artifacts
1 parent 38a3832 commit 7dc319b

File tree

9 files changed

+25
-45
lines changed

9 files changed

+25
-45
lines changed

blas/base/dcopy/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
[464,464,100,43,43,100,4,4,100,464,464,100,"b415c56c4d4f30ccbed40006875ca5ccc6e50247","2024-04-27 16:03:25 -0700"]
1010
[464,464,100,43,43,100,4,4,100,464,464,100,"c65c95104ca154b32d03b6282fd4b2325b049e1f","2024-04-29 00:45:26 -0700"]
1111
[432,432,100,35,35,100,4,4,100,432,432,100,"4d0837401b68ebd4e5b8c38e0214158dbe410a07","2024-06-30 19:33:13 -0700"]
12+
[425,425,100,29,29,100,4,4,100,425,425,100,"c3895df672126473f5803e93b529bcdd0775c75a","2024-06-30 22:59:32 -0700"]

blas/base/dcopy/dcopy.js.html

Lines changed: 11 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>69/69</span>
28+
<span class='fraction'>62/62</span>
2929
</div>
3030

3131

3232
<div class='fl pad1y space-right2'>
3333
<span class="strong">100% </span>
3434
<span class="quiet">Branches</span>
35-
<span class='fraction'>10/10</span>
35+
<span class='fraction'>4/4</span>
3636
</div>
3737

3838

@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>69/69</span>
49+
<span class='fraction'>62/62</span>
5050
</div>
5151

5252

@@ -125,14 +125,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
125125
<a name='L60'></a><a href='#L60'>60</a>
126126
<a name='L61'></a><a href='#L61'>61</a>
127127
<a name='L62'></a><a href='#L62'>62</a>
128-
<a name='L63'></a><a href='#L63'>63</a>
129-
<a name='L64'></a><a href='#L64'>64</a>
130-
<a name='L65'></a><a href='#L65'>65</a>
131-
<a name='L66'></a><a href='#L66'>66</a>
132-
<a name='L67'></a><a href='#L67'>67</a>
133-
<a name='L68'></a><a href='#L68'>68</a>
134-
<a name='L69'></a><a href='#L69'>69</a>
135-
<a name='L70'></a><a href='#L70'>70</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
128+
<a name='L63'></a><a href='#L63'>63</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
129+
<span class="cline-any cline-yes">2x</span>
136130
<span class="cline-any cline-yes">2x</span>
137131
<span class="cline-any cline-yes">2x</span>
138132
<span class="cline-any cline-yes">2x</span>
@@ -184,16 +178,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
184178
<span class="cline-any cline-yes">11x</span>
185179
<span class="cline-any cline-yes">2x</span>
186180
<span class="cline-any cline-yes">2x</span>
187-
<span class="cline-any cline-yes">11x</span>
188-
<span class="cline-any cline-yes">2x</span>
189-
<span class="cline-any cline-yes">11x</span>
190-
<span class="cline-any cline-yes">7x</span>
191-
<span class="cline-any cline-yes">7x</span>
192-
<span class="cline-any cline-yes">11x</span>
193-
<span class="cline-any cline-yes">2x</span>
194-
<span class="cline-any cline-yes">11x</span>
195-
<span class="cline-any cline-yes">7x</span>
196-
<span class="cline-any cline-yes">7x</span>
181+
<span class="cline-any cline-yes">9x</span>
182+
<span class="cline-any cline-yes">9x</span>
197183
<span class="cline-any cline-yes">9x</span>
198184
<span class="cline-any cline-yes">11x</span>
199185
<span class="cline-any cline-yes">2x</span>
@@ -223,6 +209,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
223209
&nbsp;
224210
// MODULES //
225211
&nbsp;
212+
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
226213
var ndarray = require( './ndarray.js' );
227214
&nbsp;
228215
&nbsp;
@@ -253,16 +240,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
253240
if ( N &lt;= 0 ) {
254241
return y;
255242
}
256-
if ( strideX &lt; 0 ) {
257-
ix = ( 1 - N ) * strideX;
258-
} else {
259-
ix = 0;
260-
}
261-
if ( strideY &lt; 0 ) {
262-
iy = ( 1 - N ) * strideY;
263-
} else {
264-
iy = 0;
265-
}
243+
ix = stride2offset( N, strideX );
244+
iy = stride2offset( N, strideY );
266245
return ndarray( N, x, strideX, ix, y, strideY, iy );
267246
}
268247
&nbsp;
@@ -277,7 +256,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
277256
<div class='footer quiet pad2 space-top1 center small'>
278257
Code coverage generated by
279258
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
280-
at 2024-07-01T03:14:37.283Z
259+
at 2024-07-01T06:01:51.536Z
281260
</div>
282261
<script src="../../../../prettify.js"></script>
283262
<script>

blas/base/dcopy/dcopy.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
235235
<div class='footer quiet pad2 space-top1 center small'>
236236
Code coverage generated by
237237
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
238-
at 2024-07-01T03:14:37.283Z
238+
at 2024-07-01T06:01:51.536Z
239239
</div>
240240
<script src="../../../../prettify.js"></script>
241241
<script>

blas/base/dcopy/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dcopy/lib</h1>
2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>432/432</span>
28+
<span class='fraction'>425/425</span>
2929
</div>
3030

3131

3232
<div class='fl pad1y space-right2'>
3333
<span class="strong">100% </span>
3434
<span class="quiet">Branches</span>
35-
<span class='fraction'>35/35</span>
35+
<span class='fraction'>29/29</span>
3636
</div>
3737

3838

@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dcopy/lib</h1>
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>432/432</span>
49+
<span class='fraction'>425/425</span>
5050
</div>
5151

5252

@@ -84,13 +84,13 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dcopy/lib</h1>
8484
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
8585
</td>
8686
<td data-value="100" class="pct high">100%</td>
87-
<td data-value="69" class="abs high">69/69</td>
87+
<td data-value="62" class="abs high">62/62</td>
8888
<td data-value="100" class="pct high">100%</td>
89-
<td data-value="10" class="abs high">10/10</td>
89+
<td data-value="4" class="abs high">4/4</td>
9090
<td data-value="100" class="pct high">100%</td>
9191
<td data-value="1" class="abs high">1/1</td>
9292
<td data-value="100" class="pct high">100%</td>
93-
<td data-value="69" class="abs high">69/69</td>
93+
<td data-value="62" class="abs high">62/62</td>
9494
</tr>
9595

9696
<tr>
@@ -191,7 +191,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dcopy/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 2024-07-01T03:14:37.283Z
194+
at 2024-07-01T06:01:51.536Z
195195
</div>
196196
<script src="../../../../prettify.js"></script>
197197
<script>

blas/base/dcopy/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
280280
<div class='footer quiet pad2 space-top1 center small'>
281281
Code coverage generated by
282282
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
283-
at 2024-07-01T03:14:37.283Z
283+
at 2024-07-01T06:01:51.536Z
284284
</div>
285285
<script src="../../../../prettify.js"></script>
286286
<script>

blas/base/dcopy/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 2024-07-01T03:14:37.283Z
178+
at 2024-07-01T06:01:51.536Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dcopy/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 2024-07-01T03:14:37.283Z
178+
at 2024-07-01T06:01:51.536Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dcopy/ndarray.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
370370
<div class='footer quiet pad2 space-top1 center small'>
371371
Code coverage generated by
372372
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
373-
at 2024-07-01T03:14:37.283Z
373+
at 2024-07-01T06:01:51.536Z
374374
</div>
375375
<script src="../../../../prettify.js"></script>
376376
<script>

blas/base/dcopy/ndarray.native.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 2024-07-01T03:14:37.283Z
277+
at 2024-07-01T06:01:51.536Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

0 commit comments

Comments
 (0)