Skip to content

Commit cecbca4

Browse files
committed
Update artifacts
1 parent 970a17a commit cecbca4

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

blas/base/dsyr2k/base.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -891,10 +891,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
891891
// MAIN //
892892
&nbsp;
893893
/**
894-
* Performs one of the symmetric rank `2K` operations `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
894+
* Performs one of the symmetric rank `2K` operations `C = α*A*B^T + C = α*B*A^T + β*C` or `C = α*A^T*B + α*B^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
895895
*
896896
* @private
897-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
897+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
898898
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
899899
* @param {NonNegativeInteger} N - order of the matrix `C`
900900
* @param {NonNegativeInteger} K - number of columns or number of rows of the matrices `A` and `B`
@@ -919,10 +919,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
919919
*
920920
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
921921
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
922-
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ] );
922+
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 2.0, 4.0, 5.0, 3.0, 5.0, 6.0 ] );
923923
*
924924
* dsyr2k( 'upper', 'no-transpose', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0, 1.0, C, 3, 1, 0 );
925-
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 0.0, 158.0, 249.0, 0.0, 0.0, 394.0 ]
925+
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 2.0, 158.0, 249.0, 3.0, 5.0, 394.0 ]
926926
*/
927927
function dsyr2k( uplo, trans, N, K, alpha, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB, beta, C, strideC1, strideC2, offsetC ) {
928928
var isrma;
@@ -1063,7 +1063,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10631063
<div class='footer quiet pad2 space-top1 center small'>
10641064
Code coverage generated by
10651065
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1066-
at 2025-08-03T10:43:08.540Z
1066+
at 2025-08-03T11:08:01.843Z
10671067
</div>
10681068
<script src="../../../../prettify.js"></script>
10691069
<script>

blas/base/dsyr2k/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[663,663,100,116,116,100,5,5,100,663,663,100,"d5cd6dc7ed4841fb2edbd38cae8ab84adcd4b4b8","2025-08-03 16:11:54 +0530"]
1+
[663,663,100,116,116,100,5,5,100,663,663,100,"cab0b41d83ddc34d73cadf3a9a64615537012b29","2025-08-03 16:36:10 +0530"]

blas/base/dsyr2k/dsyr2k.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
360360
* Performs one of the symmetric rank `2K` operations `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
361361
*
362362
* @param {string} order - storage layout
363-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
363+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
364364
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
365365
* @param {NonNegativeInteger} N - order of the matrix `C`
366366
* @param {NonNegativeInteger} K - number of columns or number of rows of the matrices `A` and `B`
@@ -374,7 +374,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
374374
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
375375
* @throws {TypeError} first argument must be a valid order
376376
* @throws {TypeError} second argument must be a valid side
377-
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix is supplied.
377+
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix to be referenced.
378378
* @throws {RangeError} fourth argument must be a nonnegative integer
379379
* @throws {RangeError} fifth argument must be a nonnegative integer
380380
* @throws {RangeError} eighth argument must be greater than or equal to max(1,N) when `A` is not transposed and max(1,K) otherwise
@@ -386,10 +386,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
386386
*
387387
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
388388
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
389-
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ] );
389+
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 2.0, 4.0, 5.0, 3.0, 5.0, 6.0 ] );
390390
*
391391
* dsyr2k( 'row-major', 'upper', 'no-transpose', 3, 3, 1.0, A, 3, B, 3, 1.0, C, 3 );
392-
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 0.0, 158.0, 249.0, 0.0, 0.0, 394.0 ]
392+
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 2.0, 158.0, 249.0, 3.0, 5.0, 394.0 ]
393393
*/
394394
function dsyr2k( order, uplo, trans, N, K, alpha, A, LDA, B, LDB, beta, C, LDC ) { // eslint-disable-line max-params
395395
var nrowsa;
@@ -405,7 +405,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
405405
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
406406
}
407407
if ( !isMatrixTriangle( uplo ) ) {
408-
throw new TypeError( format( 'invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
408+
throw new TypeError( format( 'invalid argument. Second argument must specify whether the lower or upper triangular matrix to be referenced. Value: `%s`.', uplo ) );
409409
}
410410
if ( !isMatrixTranspose( trans ) ) {
411411
throw new TypeError( format( 'invalid argument. Third argument must be a valid transpose operation. Value: `%s`.', trans ) );
@@ -460,7 +460,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
460460
<div class='footer quiet pad2 space-top1 center small'>
461461
Code coverage generated by
462462
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
463-
at 2025-08-03T10:43:08.540Z
463+
at 2025-08-03T11:08:01.843Z
464464
</div>
465465
<script src="../../../../prettify.js"></script>
466466
<script>

blas/base/dsyr2k/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dsyr2k/lib</h1>
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-08-03T10:43:08.540Z
164+
at 2025-08-03T11:08:01.843Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/base/dsyr2k/index.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -238,21 +238,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
238238
*
239239
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
240240
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
241-
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ] );
241+
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 2.0, 4.0, 5.0, 3.0, 5.0, 6.0 ] );
242242
*
243243
* dsyr2k( 'row-major', 'upper', 'no-transpose', 3, 3, 1.0, A, 3, B, 3, 1.0, C, 3 );
244-
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 0.0, 158.0, 249.0, 0.0, 0.0, 394.0 ]
244+
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 2.0, 158.0, 249.0, 3.0, 5.0, 394.0 ]
245245
*
246246
* @example
247247
* var Float64Array = require( '@stdlib/array/float64' );
248248
* var dsyr2k = require( '@stdlib/blas/base/dsyr2k' );
249249
*
250250
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
251251
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
252-
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ] );
252+
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 2.0, 4.0, 5.0, 3.0, 5.0, 6.0 ] );
253253
*
254254
* dsyr2k.ndarray( 'upper', 'no-transpose', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0, 1.0, C, 3, 1, 0 );
255-
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 0.0, 158.0, 249.0, 0.0, 0.0, 394.0 ]
255+
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 2.0, 158.0, 249.0, 3.0, 5.0, 394.0 ]
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-08-03T10:43:08.540Z
289+
at 2025-08-03T11:08:01.843Z
290290
</div>
291291
<script src="../../../../prettify.js"></script>
292292
<script>

blas/base/dsyr2k/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-03T10:43:08.540Z
178+
at 2025-08-03T11:08:01.843Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dsyr2k/ndarray.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
287287
* Performs one of the symmetric rank `2K` operations `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
288288
*
289289
* @private
290-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
290+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
291291
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
292292
* @param {NonNegativeInteger} N - order of the matrix `C`
293293
* @param {NonNegativeInteger} K - number of columns or number of rows of the matrices `A` and `B`
@@ -306,7 +306,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
306306
* @param {integer} strideC2 - stride of the second dimension of `C`
307307
* @param {NonNegativeInteger} offsetC - starting index for `C`
308308
* @throws {TypeError} first argument must be a valid side
309-
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix is supplied.
309+
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix to be referenced.
310310
* @throws {RangeError} third argument must be a nonnegative integer
311311
* @throws {RangeError} fourth argument must be a nonnegative integer
312312
* @throws {RangeError} sixteenth argument must be non-zero
@@ -317,14 +317,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
317317
*
318318
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
319319
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
320-
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ] );
320+
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 2.0, 4.0, 5.0, 3.0, 5.0, 6.0 ] );
321321
*
322322
* dsyr2k( 'upper', 'no-transpose', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0, 1.0, C, 3, 1, 0 );
323-
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 0.0, 158.0, 249.0, 0.0, 0.0, 394.0 ]
323+
* // C =&gt; &lt;Float64Array&gt;[ 29.0, 66.0, 103.0, 2.0, 158.0, 249.0, 3.0, 5.0, 394.0 ]
324324
*/
325325
function dsyr2k( uplo, trans, N, K, alpha, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB, beta, C, strideC1, strideC2, offsetC ) { // eslint-disable-line max-params, max-len
326326
if ( !isMatrixTriangle( uplo ) ) {
327-
throw new TypeError( format( 'invalid argument. First argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
327+
throw new TypeError( format( 'invalid argument. First argument must specify whether the lower or upper triangular matrix to be referenced. Value: `%s`.', uplo ) );
328328
}
329329
if ( !isMatrixTranspose( trans ) ) {
330330
throw new TypeError( format( 'invalid argument. Second argument must be a valid transpose operation. Value: `%s`.', trans ) );
@@ -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-03T10:43:08.540Z
358+
at 2025-08-03T11:08:01.843Z
359359
</div>
360360
<script src="../../../../prettify.js"></script>
361361
<script>

0 commit comments

Comments
 (0)