Skip to content

Commit 3779d61

Browse files
committed
Update artifacts
1 parent e21d26b commit 3779d61

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

blas/base/ssyr2/base.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
469469
<div class='footer quiet pad2 space-top1 center small'>
470470
Code coverage generated by
471471
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
472-
at 2025-08-17T14:38:03.147Z
472+
at 2025-08-17T14:40:41.098Z
473473
</div>
474474
<script src="../../../../prettify.js"></script>
475475
<script>

blas/base/ssyr2/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[628,628,100,91,91,100,5,5,100,628,628,100,"64518a44d12e1912394c26b595c3823d608a89de","2025-08-17 14:36:18 +0000"]
1+
[628,628,100,91,91,100,5,5,100,628,628,100,"44b73e153c0c25f07696b9163e5e95bd97f54c93","2025-08-17 20:08:53 +0530"]

blas/base/ssyr2/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/ssyr2/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-08-17T14:38:03.147Z
194+
at 2025-08-17T14:40:41.098Z
195195
</div>
196196
<script src="../../../../prettify.js"></script>
197197
<script>

blas/base/ssyr2/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-08-17T14:38:03.147Z
289+
at 2025-08-17T14:40:41.098Z
290290
</div>
291291
<script src="../../../../prettify.js"></script>
292292
<script>

blas/base/ssyr2/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-08-17T14:38:03.147Z
178+
at 2025-08-17T14:40:41.098Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/ssyr2/ndarray.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-08-17T14:38:03.147Z
349+
at 2025-08-17T14:40:41.098Z
350350
</div>
351351
<script src="../../../../prettify.js"></script>
352352
<script>

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
289289
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
290290
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
291291
* @param {number} alpha - scalar constant
292-
* @param {Float64Array} x - first input vector
292+
* @param {Float32Array} x - first input vector
293293
* @param {integer} strideX - `x` stride length
294294
* @param {NonNegativeInteger} offsetX - starting index for `x`
295-
* @param {Float64Array} y - second input vector
295+
* @param {Float32Array} y - second input vector
296296
* @param {integer} strideY - `y` stride length
297297
* @param {NonNegativeInteger} offsetY - starting index for `y`
298-
* @param {Float64Array} A - input matrix
298+
* @param {Float32Array} A - input matrix
299299
* @param {integer} strideA1 - stride of the first dimension of `A`
300300
* @param {integer} strideA2 - stride of the second dimension of `A`
301301
* @param {NonNegativeInteger} offsetA - starting index for `A`
@@ -305,17 +305,17 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
305305
* @throws {RangeError} eighth argument must be non-zero
306306
* @throws {RangeError} eleventh argument must be non-zero
307307
* @throws {RangeError} twelfth argument must be non-zero
308-
* @returns {Float64Array} `A`
308+
* @returns {Float32Array} `A`
309309
*
310310
* @example
311-
* var Float64Array = require( '@stdlib/array/float64' );
311+
* var Float32Array = require( '@stdlib/array/float32' );
312312
*
313-
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ] ); // =&gt; [ [ 1.0, 2.0, 3.0 ], [ 2.0, 1.0, 2.0 ], [ 3.0, 2.0, 1.0 ] ]
314-
* var x = new Float64Array( [ 1.0, 2.0, 3.0 ] );
315-
* var y = new Float64Array( [ 1.0, 2.0, 3.0 ] );
313+
* var A = new Float32Array( [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ] ); // =&gt; [ [ 1.0, 2.0, 3.0 ], [ 2.0, 1.0, 2.0 ], [ 3.0, 2.0, 1.0 ] ]
314+
* var x = new Float32Array( [ 1.0, 2.0, 3.0 ] );
315+
* var y = new Float32Array( [ 1.0, 2.0, 3.0 ] );
316316
*
317317
* ssyr2( 'upper', 3, 1.0, x, 1, 0, y, 1, 0, A, 3, 1, 0 );
318-
* // A =&gt; &lt;Float64Array&gt;[ 3.0, 6.0, 9.0, 2.0, 9.0, 14.0, 3.0, 2.0, 19.0 ]
318+
* // A =&gt; &lt;Float32Array&gt;[ 3.0, 6.0, 9.0, 2.0, 9.0, 14.0, 3.0, 2.0, 19.0 ]
319319
*/
320320
function ssyr2( uplo, N, alpha, x, strideX, offsetX, y, strideY, offsetY, A, strideA1, strideA2, offsetA ) { // eslint-disable-line max-len, max-params
321321
if ( !isMatrixTriangle( uplo ) ) {
@@ -355,7 +355,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
355355
<div class='footer quiet pad2 space-top1 center small'>
356356
Code coverage generated by
357357
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
358-
at 2025-08-17T14:38:03.147Z
358+
at 2025-08-17T14:40:41.098Z
359359
</div>
360360
<script src="../../../../prettify.js"></script>
361361
<script>

blas/base/ssyr2/ssyr2.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
388388
<div class='footer quiet pad2 space-top1 center small'>
389389
Code coverage generated by
390390
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
391-
at 2025-08-17T14:38:03.147Z
391+
at 2025-08-17T14:40:41.098Z
392392
</div>
393393
<script src="../../../../prettify.js"></script>
394394
<script>

blas/base/ssyr2/ssyr2.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
355355
<div class='footer quiet pad2 space-top1 center small'>
356356
Code coverage generated by
357357
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
358-
at 2025-08-17T14:38:03.147Z
358+
at 2025-08-17T14:40:41.098Z
359359
</div>
360360
<script src="../../../../prettify.js"></script>
361361
<script>

0 commit comments

Comments
 (0)