Skip to content

Commit 9b4f36e

Browse files
committed
Update artifacts
1 parent f7be5e0 commit 9b4f36e

17 files changed

+48
-48
lines changed

blas/ext/base/drss/coverage.ndjson

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[422,439,96.1276,20,23,86.9565,4,4,100,422,439,96.1276,"0d98591275455f2787e093cf2630d57d2c439580","2025-12-03 16:38:13 +0530"]
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44

55
<head>
6-
<title>Code coverage report for drss.js</title>
6+
<title>Code coverage report for drssbl.js</title>
77
<meta charset="utf-8" />
88
<link rel="stylesheet" href="prettify.css" />
99
<link rel="stylesheet" href="base.css" />
@@ -19,7 +19,7 @@
1919
<body>
2020
<div class='wrapper'>
2121
<div class='pad1'>
22-
<h1><a href="index.html">All files</a> drss.js</h1>
22+
<h1><a href="index.html">All files</a> drssbl.js</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
@@ -206,7 +206,7 @@ <h1><a href="index.html">All files</a> drss.js</h1>
206206
// MAIN //
207207
&nbsp;
208208
/**
209-
* Computes the residual sum of squares of two double-precision floating-point strided arrays.
209+
* Computes the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
210210
*
211211
* @param {PositiveInteger} N - number of indexed elements
212212
* @param {Float64Array} x - first input array
@@ -221,10 +221,10 @@ <h1><a href="index.html">All files</a> drss.js</h1>
221221
* var x = new Float64Array( [ 1.0, 2.0, 2.0, -7.0, -2.0, 3.0, 4.0, 2.0 ] );
222222
* var y = new Float64Array( [ 2.0, 1.0, 2.0, 1.0, -2.0, 2.0, 3.0, 4.0 ] );
223223
*
224-
* var z = drss( x.length, x, 1, y, 1 );
224+
* var z = drssbl( x.length, x, 1, y, 1 );
225225
* // returns 72.0
226226
*/
227-
function drss( N, x, strideX, y, strideY ) {
227+
function drssbl( N, x, strideX, y, strideY ) {
228228
var ox = stride2offset( N, strideX );
229229
var oy = stride2offset( N, strideY );
230230
return ndarray( N, x, strideX, ox, y, strideY, oy );
@@ -233,15 +233,15 @@ <h1><a href="index.html">All files</a> drss.js</h1>
233233
&nbsp;
234234
// EXPORTS //
235235
&nbsp;
236-
module.exports = drss;
236+
module.exports = drssbl;
237237
&nbsp;</pre></td></tr></table></pre>
238238

239239
<div class='push'></div><!-- for sticky footer -->
240240
</div><!-- /wrapper -->
241241
<div class='footer quiet pad2 space-top1 center small'>
242242
Code coverage generated by
243243
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
244-
at 2025-12-02T18:05:18.166Z
244+
at 2025-12-03T11:10:50.168Z
245245
</div>
246246
<script src="prettify.js"></script>
247247
<script>

blas/ext/base/drss/drss.native.js.html renamed to blas/ext/base/drssbl/drssbl.native.js.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44

55
<head>
6-
<title>Code coverage report for drss.native.js</title>
6+
<title>Code coverage report for drssbl.native.js</title>
77
<meta charset="utf-8" />
88
<link rel="stylesheet" href="prettify.css" />
99
<link rel="stylesheet" href="base.css" />
@@ -19,7 +19,7 @@
1919
<body>
2020
<div class='wrapper'>
2121
<div class='pad1'>
22-
<h1><a href="index.html">All files</a> drss.native.js</h1>
22+
<h1><a href="index.html">All files</a> drssbl.native.js</h1>
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
@@ -199,7 +199,7 @@ <h1><a href="index.html">All files</a> drss.native.js</h1>
199199
// MAIN //
200200
&nbsp;
201201
/**
202-
* Computes the residual sum of squares of two double-precision floating-point strided arrays.
202+
* Computes the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
203203
*
204204
* @param {PositiveInteger} N - number of indexed elements
205205
* @param {Float64Array} x - first input array
@@ -214,25 +214,25 @@ <h1><a href="index.html">All files</a> drss.native.js</h1>
214214
* var x = new Float64Array( [ 1.0, 2.0, 2.0, -7.0, -2.0, 3.0, 4.0, 2.0 ] );
215215
* var y = new Float64Array( [ 2.0, 1.0, 2.0, 1.0, -2.0, 2.0, 3.0, 4.0 ] );
216216
*
217-
* var z = drss( x.length, x, 1, y, 1 );
217+
* var z = drssbl( x.length, x, 1, y, 1 );
218218
* // returns 72.0
219219
*/
220-
function drss( N, x, strideX, y, strideY ) {
220+
function drssbl( N, x, strideX, y, strideY ) {
221221
return addon( N, x, strideX, y, strideY );
222222
}
223223
&nbsp;
224224
&nbsp;
225225
// EXPORTS //
226226
&nbsp;
227-
module.exports = drss;
227+
module.exports = drssbl;
228228
&nbsp;</pre></td></tr></table></pre>
229229

230230
<div class='push'></div><!-- for sticky footer -->
231231
</div><!-- /wrapper -->
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 2025-12-02T18:05:18.166Z
235+
at 2025-12-03T11:10:50.168Z
236236
</div>
237237
<script src="prettify.js"></script>
238238
<script>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>All files</h1>
7979
</tr>
8080
</thead>
8181
<tbody><tr>
82-
<td class="file high" data-value="drss.js"><a href="drss.js.html">drss.js</a></td>
82+
<td class="file high" data-value="drssbl.js"><a href="drssbl.js.html">drssbl.js</a></td>
8383
<td data-value="100" class="pic high">
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>
@@ -94,7 +94,7 @@ <h1>All files</h1>
9494
</tr>
9595

9696
<tr>
97-
<td class="file high" data-value="drss.native.js"><a href="drss.native.js.html">drss.native.js</a></td>
97+
<td class="file high" data-value="drssbl.native.js"><a href="drssbl.native.js.html">drssbl.native.js</a></td>
9898
<td data-value="100" class="pic high">
9999
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
100100
</td>
@@ -191,7 +191,7 @@ <h1>All files</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 2025-12-02T18:05:18.166Z
194+
at 2025-12-03T11:10:50.168Z
195195
</div>
196196
<script src="prettify.js"></script>
197197
<script>
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -224,28 +224,28 @@ <h1><a href="index.html">All files</a> index.js</h1>
224224
'use strict';
225225
&nbsp;
226226
/**
227-
* Compute the residual sum of squares of two double-precision floating-point strided arrays.
227+
* Compute the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
228228
*
229-
* @module @stdlib/blas/ext/base/drss
229+
* @module @stdlib/blas/ext/base/drssbl
230230
*
231231
* @example
232232
* var Float64Array = require( '@stdlib/array/float64' );
233-
* var drss = require( '@stdlib/blas/ext/base/drss' );
233+
* var drssbl = require( '@stdlib/blas/ext/base/drssbl' );
234234
*
235235
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
236236
* var y = new Float64Array( [ 1.0, 1.0, -4.0 ] );
237237
*
238-
* var out = drss( x.length, x, 1, y, 1 );
238+
* var out = drssbl( x.length, x, 1, y, 1 );
239239
* // returns 45.0
240240
*
241241
* @example
242242
* var Float64Array = require( '@stdlib/array/float64' );
243-
* var drss = require( '@stdlib/blas/ext/base/drss' );
243+
* var drssbl = require( '@stdlib/blas/ext/base/drssbl' );
244244
*
245245
* var x = new Float64Array( [ 1.0, 2.0, 2.0, -7.0, -2.0, 3.0, 4.0, 2.0 ] );
246246
* var y = new Float64Array( [ 2.0, 1.0, 2.0, 1.0, -2.0, 2.0, 3.0, 4.0 ] );
247247
*
248-
* var z = drss.ndarray( x.length, x, 1, 0, y, 1, 0 );
248+
* var z = drssbl.ndarray( x.length, x, 1, 0, y, 1, 0 );
249249
* // returns 72.0
250250
*/
251251
&nbsp;
@@ -259,28 +259,28 @@ <h1><a href="index.html">All files</a> index.js</h1>
259259
&nbsp;
260260
// MAIN //
261261
&nbsp;
262-
var drss;
262+
var drssbl;
263263
var tmp = tryRequire( join( __dirname, './native.js' ) );
264264
if ( isError( tmp ) ) {
265-
drss = main;
265+
drssbl = main;
266266
} else {
267-
drss = tmp;
267+
drssbl = tmp;
268268
}
269269
&nbsp;
270270
&nbsp;
271271
// EXPORTS //
272272
&nbsp;
273-
module.exports = drss;
273+
module.exports = drssbl;
274274
&nbsp;
275-
// exports: { "ndarray": "drss.ndarray" }
275+
// exports: { "ndarray": "drssbl.ndarray" }
276276
&nbsp;</pre></td></tr></table></pre>
277277

278278
<div class='push'></div><!-- for sticky footer -->
279279
</div><!-- /wrapper -->
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 2025-12-02T18:05:18.166Z
283+
at 2025-12-03T11:10:50.168Z
284284
</div>
285285
<script src="prettify.js"></script>
286286
<script>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,26 +156,26 @@ <h1><a href="index.html">All files</a> main.js</h1>
156156
// MODULES //
157157
&nbsp;
158158
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
159-
var drss = require( './drss.js' );
159+
var drssbl = require( './drssbl.js' );
160160
var ndarray = require( './ndarray.js' );
161161
&nbsp;
162162
&nbsp;
163163
// MAIN //
164164
&nbsp;
165-
setReadOnly( drss, 'ndarray', ndarray );
165+
setReadOnly( drssbl, 'ndarray', ndarray );
166166
&nbsp;
167167
&nbsp;
168168
// EXPORTS //
169169
&nbsp;
170-
module.exports = drss;
170+
module.exports = drssbl;
171171
&nbsp;</pre></td></tr></table></pre>
172172

173173
<div class='push'></div><!-- for sticky footer -->
174174
</div><!-- /wrapper -->
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-12-02T18:05:18.166Z
178+
at 2025-12-03T11:10:50.168Z
179179
</div>
180180
<script src="prettify.js"></script>
181181
<script>

0 commit comments

Comments
 (0)