Skip to content

Commit c688160

Browse files
committed
Update artifacts
1 parent 74f139d commit c688160

File tree

9 files changed

+78
-77
lines changed

9 files changed

+78
-77
lines changed

blas/base/csrot/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
[534,534,100,17,17,100,4,4,100,534,534,100,"52e9aa8b65c4485c8a077dde000c44b5cfefc5fb","2024-11-17 19:57:47 -0800"]
44
[526,526,100,17,17,100,4,4,100,526,526,100,"2d0ea39cfb5e3f2c31e13520ac6bec201e7842ef","2024-11-17 20:04:23 -0800"]
55
[418,418,100,17,17,100,4,4,100,418,418,100,"99b9273752c85e3a322ea18dfa60bb7632478fc5","2025-01-31 02:14:40 -0800"]
6+
[418,418,100,17,17,100,4,4,100,418,418,100,"ba6ded358ecea8ad39d9b34acce83663ac83948f","2025-06-01 01:14:02 -0700"]

blas/base/csrot/csrot.js.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -215,28 +215,28 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
215215
* Applies a plane rotation.
216216
*
217217
* @param {PositiveInteger} N - number of indexed elements
218-
* @param {Complex64Array} cx - first input array
219-
* @param {integer} strideX - `cx` stride length
220-
* @param {Complex64Array} cy - second input array
221-
* @param {integer} strideY - `cy` stride length
218+
* @param {Complex64Array} x - first input array
219+
* @param {integer} strideX - `x` stride length
220+
* @param {Complex64Array} y - second input array
221+
* @param {integer} strideY - `y` stride length
222222
* @param {number} c - cosine of the angle of rotation
223223
* @param {number} s - sine of the angle of rotation
224-
* @returns {Complex64Array} `cy`
224+
* @returns {Complex64Array} `y`
225225
*
226226
* @example
227227
* var Complex64Array = require( '@stdlib/array/complex64' );
228228
*
229-
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
230-
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
229+
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
230+
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
231231
*
232-
* csrot( cx.length, cx, 1, cy, 1, 0.8, 0.6 );
233-
* // cx =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
234-
* // cy =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
232+
* csrot( x.length, x, 1, y, 1, 0.8, 0.6 );
233+
* // x =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
234+
* // y =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
235235
*/
236-
function csrot( N, cx, strideX, cy, strideY, c, s ) {
236+
function csrot( N, x, strideX, y, strideY, c, s ) {
237237
var ix = stride2offset( N, strideX );
238238
var iy = stride2offset( N, strideY );
239-
return ndarray( N, cx, strideX, ix, cy, strideY, iy, c, s );
239+
return ndarray( N, x, strideX, ix, y, strideY, iy, c, s );
240240
}
241241
&nbsp;
242242
&nbsp;
@@ -250,7 +250,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
250250
<div class='footer quiet pad2 space-top1 center small'>
251251
Code coverage generated by
252252
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
253-
at 2025-01-31T10:16:45.682Z
253+
at 2025-06-01T08:15:34.671Z
254254
</div>
255255
<script src="../../../../prettify.js"></script>
256256
<script>

blas/base/csrot/csrot.native.js.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -217,29 +217,29 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
217217
* Applies a plane rotation.
218218
*
219219
* @param {PositiveInteger} N - number of indexed elements
220-
* @param {Complex64Array} cx - first input array
221-
* @param {integer} strideX - `cx` stride length
222-
* @param {Complex64Array} cy - second input array
223-
* @param {integer} strideY - `cy` stride length
220+
* @param {Complex64Array} x - first input array
221+
* @param {integer} strideX - `x` stride length
222+
* @param {Complex64Array} y - second input array
223+
* @param {integer} strideY - `y` stride length
224224
* @param {number} c - cosine of the angle of rotation
225225
* @param {number} s - sine of the angle of rotation
226-
* @returns {Complex64Array} `cy`
226+
* @returns {Complex64Array} `y`
227227
*
228228
* @example
229229
* var Complex64Array = require( '@stdlib/array/complex64' );
230230
*
231-
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
232-
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
231+
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
232+
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
233233
*
234-
* csrot( cx.length, cx, 1, cy, 1, 0.8, 0.6 );
235-
* // cx =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
236-
* // cy =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
234+
* csrot( x.length, x, 1, y, 1, 0.8, 0.6 );
235+
* // x =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
236+
* // y =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
237237
*/
238-
function csrot( N, cx, strideX, cy, strideY, c, s ) {
239-
var viewX = reinterpret( cx, 0 );
240-
var viewY = reinterpret( cy, 0 );
238+
function csrot( N, x, strideX, y, strideY, c, s ) {
239+
var viewX = reinterpret( x, 0 );
240+
var viewY = reinterpret( y, 0 );
241241
addon( N, viewX, strideX, viewY, strideY, c, s );
242-
return cy;
242+
return y;
243243
}
244244
&nbsp;
245245
&nbsp;
@@ -253,7 +253,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
253253
<div class='footer quiet pad2 space-top1 center small'>
254254
Code coverage generated by
255255
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
256-
at 2025-01-31T10:16:45.682Z
256+
at 2025-06-01T08:15:34.671Z
257257
</div>
258258
<script src="../../../../prettify.js"></script>
259259
<script>

blas/base/csrot/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/base/csrot/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 2025-01-31T10:16:45.682Z
194+
at 2025-06-01T08:15:34.671Z
195195
</div>
196196
<script src="../../../../prettify.js"></script>
197197
<script>

blas/base/csrot/index.js.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -236,23 +236,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
236236
* var Complex64Array = require( '@stdlib/array/complex64' );
237237
* var csrot = require( '@stdlib/blas/base/csrot' );
238238
*
239-
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
240-
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
239+
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
240+
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
241241
*
242-
* csrot( cx.length, cx, 1, cy, 1, 0.8, 0.6 );
243-
* // cx =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
244-
* // cy =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
242+
* csrot( x.length, x, 1, y, 1, 0.8, 0.6 );
243+
* // x =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
244+
* // y =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
245245
*
246246
* @example
247247
* var Complex64Array = require( '@stdlib/array/complex64' );
248248
* var csrot = require( '@stdlib/blas/base/csrot' );
249249
*
250-
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
251-
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
250+
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
251+
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
252252
*
253-
* csrot.ndarray( cx.length, cx, 1, 0, cy, 1, 0, 0.8, 0.6 );
254-
* // cx =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
255-
* // cy =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
253+
* csrot.ndarray( x.length, x, 1, 0, y, 1, 0, 0.8, 0.6 );
254+
* // x =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
255+
* // y =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
256256
*/
257257
&nbsp;
258258
// MODULES //
@@ -286,7 +286,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
286286
<div class='footer quiet pad2 space-top1 center small'>
287287
Code coverage generated by
288288
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
289-
at 2025-01-31T10:16:45.682Z
289+
at 2025-06-01T08:15:34.671Z
290290
</div>
291291
<script src="../../../../prettify.js"></script>
292292
<script>

blas/base/csrot/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 2025-01-31T10:16:45.682Z
178+
at 2025-06-01T08:15:34.671Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/csrot/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 2025-01-31T10:16:45.682Z
178+
at 2025-06-01T08:15:34.671Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/csrot/ndarray.js.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -279,27 +279,27 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
279279
* Applies a plane rotation.
280280
*
281281
* @param {PositiveInteger} N - number of indexed elements
282-
* @param {Complex64Array} cx - first input array
283-
* @param {integer} strideX - `cx` stride length
284-
* @param {NonNegativeInteger} offsetX - starting `cx` index
285-
* @param {Complex64Array} cy - second input array
286-
* @param {integer} strideY - `cy` stride length
287-
* @param {NonNegativeInteger} offsetY - starting `cy` index
282+
* @param {Complex64Array} x - first input array
283+
* @param {integer} strideX - `x` stride length
284+
* @param {NonNegativeInteger} offsetX - starting `x` index
285+
* @param {Complex64Array} y - second input array
286+
* @param {integer} strideY - `y` stride length
287+
* @param {NonNegativeInteger} offsetY - starting `y` index
288288
* @param {number} c - cosine of the angle of rotation
289289
* @param {number} s - sine of the angle of rotation
290-
* @returns {Complex64Array} `cy`
290+
* @returns {Complex64Array} `y`
291291
*
292292
* @example
293293
* var Complex64Array = require( '@stdlib/array/complex64' );
294294
*
295-
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
296-
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
295+
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
296+
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
297297
*
298-
* csrot( cx.length, cx, 1, 0, cy, 1, 0, 0.8, 0.6 );
299-
* // cx =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
300-
* // cy =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
298+
* csrot( x.length, x, 1, 0, y, 1, 0, 0.8, 0.6 );
299+
* // x =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
300+
* // y =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
301301
*/
302-
function csrot( N, cx, strideX, offsetX, cy, strideY, offsetY, c, s ) {
302+
function csrot( N, x, strideX, offsetX, y, strideY, offsetY, c, s ) {
303303
var viewX;
304304
var viewY;
305305
var tmp;
@@ -310,10 +310,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
310310
var i;
311311
&nbsp;
312312
if ( N &lt;= 0 ) {
313-
return cy;
313+
return y;
314314
}
315-
viewX = reinterpret( cx, 0 );
316-
viewY = reinterpret( cy, 0 );
315+
viewX = reinterpret( x, 0 );
316+
viewY = reinterpret( y, 0 );
317317
c = f32( c );
318318
s = f32( s );
319319
sx = strideX * 2;
@@ -332,7 +332,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
332332
ix += sx;
333333
iy += sy;
334334
}
335-
return cy;
335+
return y;
336336
}
337337
&nbsp;
338338
&nbsp;
@@ -346,7 +346,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
346346
<div class='footer quiet pad2 space-top1 center small'>
347347
Code coverage generated by
348348
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
349-
at 2025-01-31T10:16:45.682Z
349+
at 2025-06-01T08:15:34.671Z
350350
</div>
351351
<script src="../../../../prettify.js"></script>
352352
<script>

blas/base/csrot/ndarray.native.js.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -221,31 +221,31 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
221221
* Applies a plane rotation.
222222
*
223223
* @param {PositiveInteger} N - number of indexed elements
224-
* @param {Complex64Array} cx - first input array
225-
* @param {integer} strideX - `cx` stride length
226-
* @param {NonNegativeInteger} offsetX - starting `cx` index
227-
* @param {Complex64Array} cy - second input array
228-
* @param {integer} strideY - `cy` stride length
229-
* @param {NonNegativeInteger} offsetY - starting `cy` index
224+
* @param {Complex64Array} x - first input array
225+
* @param {integer} strideX - `x` stride length
226+
* @param {NonNegativeInteger} offsetX - starting `x` index
227+
* @param {Complex64Array} y - second input array
228+
* @param {integer} strideY - `y` stride length
229+
* @param {NonNegativeInteger} offsetY - starting `y` index
230230
* @param {number} c - cosine of the angle of rotation
231231
* @param {number} s - sine of the angle of rotation
232-
* @returns {Complex64Array} `cy`
232+
* @returns {Complex64Array} `y`
233233
*
234234
* @example
235235
* var Complex64Array = require( '@stdlib/array/complex64' );
236236
*
237-
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
238-
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
237+
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
238+
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
239239
*
240-
* csrot( cx.length, cx, 1, 0, cy, 1, 0, 0.8, 0.6 );
241-
* // cx =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
242-
* // cy =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
240+
* csrot( x.length, x, 1, 0, y, 1, 0, 0.8, 0.6 );
241+
* // x =&gt; &lt;Complex64Array&gt;[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4 ]
242+
* // y =&gt; &lt;Complex64Array&gt;[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8 ]
243243
*/
244-
function csrot( N, cx, strideX, offsetX, cy, strideY, offsetY, c, s ) {
245-
var viewX = reinterpret( cx, 0 );
246-
var viewY = reinterpret( cy, 0 );
244+
function csrot( N, x, strideX, offsetX, y, strideY, offsetY, c, s ) {
245+
var viewX = reinterpret( x, 0 );
246+
var viewY = reinterpret( y, 0 );
247247
addon.ndarray( N, viewX, strideX, offsetX, viewY, strideY, offsetY, c, s );
248-
return cy;
248+
return y;
249249
}
250250
&nbsp;
251251
&nbsp;
@@ -259,7 +259,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
259259
<div class='footer quiet pad2 space-top1 center small'>
260260
Code coverage generated by
261261
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
262-
at 2025-01-31T10:16:45.682Z
262+
at 2025-06-01T08:15:34.671Z
263263
</div>
264264
<script src="../../../../prettify.js"></script>
265265
<script>

0 commit comments

Comments
 (0)