Skip to content

Commit 3431f49

Browse files
committed
Update artifacts
1 parent d1ff379 commit 3431f49

File tree

9 files changed

+15
-14
lines changed

9 files changed

+15
-14
lines changed

blas/ext/base/dfill/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
[438,438,100,40,40,100,4,4,100,438,438,100,"c7b143b466f5c6fa67d414c37896b982ee509784","2024-03-13 03:04:58 -0700"]
33
[391,391,100,25,25,100,4,4,100,391,391,100,"040a33583774b120b5e486a072cff397fdb1d273","2024-09-17 14:19:17 -0700"]
44
[391,391,100,25,25,100,4,4,100,391,391,100,"7eb12667e2052db9fc1e678bf0cc2082e2993aec","2024-09-17 14:23:11 -0700"]
5+
[391,391,100,25,25,100,4,4,100,391,391,100,"6ae1c10d70d86520a0c915864440ef6e8d255a21","2024-09-17 14:31:50 -0700"]

blas/ext/base/dfill/dfill.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">bla
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 2024-09-17T21:25:27.780Z
232+
at 2024-09-17T21:34:28.757Z
233233
</div>
234234
<script src="../../../../../prettify.js"></script>
235235
<script>

blas/ext/base/dfill/dfill.native.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">bla
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 2024-09-17T21:25:27.780Z
232+
at 2024-09-17T21:34:28.757Z
233233
</div>
234234
<script src="../../../../../prettify.js"></script>
235235
<script>

blas/ext/base/dfill/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ <h1><a href="../../../../../index.html">All files</a> blas/ext/base/dfill/lib</h
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-09-17T21:25:27.780Z
194+
at 2024-09-17T21:34:28.757Z
195195
</div>
196196
<script src="../../../../../prettify.js"></script>
197197
<script>

blas/ext/base/dfill/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">bla
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-09-17T21:25:27.780Z
277+
at 2024-09-17T21:34:28.757Z
278278
</div>
279279
<script src="../../../../../prettify.js"></script>
280280
<script>

blas/ext/base/dfill/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">bla
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-09-17T21:25:27.780Z
178+
at 2024-09-17T21:34:28.757Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/dfill/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">bla
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-09-17T21:25:27.780Z
178+
at 2024-09-17T21:34:28.757Z
179179
</div>
180180
<script src="../../../../../prettify.js"></script>
181181
<script>

blas/ext/base/dfill/ndarray.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
283283
* @param {number} alpha - scalar
284284
* @param {Float64Array} x - input array
285285
* @param {integer} strideX - index increment
286-
* @param {NonNegativeInteger} offset - starting index
286+
* @param {NonNegativeInteger} offsetX - starting index
287287
* @returns {Float64Array} input array
288288
*
289289
* @example
@@ -294,15 +294,15 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
294294
* dfill( 3, 5.0, x, 1, x.length-3 );
295295
* // x =&gt; &lt;Float64Array&gt;[ 1.0, -2.0, 3.0, 5.0, 5.0, 5.0 ]
296296
*/
297-
function dfill( N, alpha, x, strideX, offset ) {
297+
function dfill( N, alpha, x, strideX, offsetX ) {
298298
var ix;
299299
var m;
300300
var i;
301301
&nbsp;
302302
if ( N &lt;= 0 ) {
303303
return x;
304304
}
305-
ix = offset;
305+
ix = offsetX;
306306
&nbsp;
307307
// Use loop unrolling if the stride is equal to `1`...
308308
if ( strideX === 1 ) {
@@ -349,7 +349,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
349349
<div class='footer quiet pad2 space-top1 center small'>
350350
Code coverage generated by
351351
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
352-
at 2024-09-17T21:25:27.780Z
352+
at 2024-09-17T21:34:28.757Z
353353
</div>
354354
<script src="../../../../../prettify.js"></script>
355355
<script>

blas/ext/base/dfill/ndarray.native.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
205205
* @param {number} alpha - scalar
206206
* @param {Float64Array} x - input array
207207
* @param {integer} strideX - index increment
208-
* @param {NonNegativeInteger} offset - starting index
208+
* @param {NonNegativeInteger} offsetX - starting index
209209
* @returns {Float64Array} input array
210210
*
211211
* @example
@@ -216,8 +216,8 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
216216
* dfill( 3, 5.0, x, 1, x.length-3 );
217217
* // x =&gt; &lt;Float64Array&gt;[ 1.0, -2.0, 3.0, 5.0, 5.0, 5.0 ]
218218
*/
219-
function dfill( N, alpha, x, strideX, offset ) {
220-
addon.ndarray( N, alpha, x, strideX, offset );
219+
function dfill( N, alpha, x, strideX, offsetX ) {
220+
addon.ndarray( N, alpha, x, strideX, offsetX );
221221
return x;
222222
}
223223
&nbsp;
@@ -232,7 +232,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
232232
<div class='footer quiet pad2 space-top1 center small'>
233233
Code coverage generated by
234234
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
235-
at 2024-09-17T21:25:27.780Z
235+
at 2024-09-17T21:34:28.757Z
236236
</div>
237237
<script src="../../../../../prettify.js"></script>
238238
<script>

0 commit comments

Comments
 (0)