Skip to content

Commit 10f94e6

Browse files
committed
Update artifacts
1 parent 4466043 commit 10f94e6

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

blas/base/dsyrk/base.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10451045
<div class='footer quiet pad2 space-top1 center small'>
10461046
Code coverage generated by
10471047
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1048-
at 2025-08-03T10:54:28.647Z
1048+
at 2025-08-03T11:15:20.598Z
10491049
</div>
10501050
<script src="../../../../prettify.js"></script>
10511051
<script>

blas/base/dsyrk/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[638,638,100,115,115,100,5,5,100,638,638,100,"336d7b9b415fe8e3a6e03e594bb2cccfb6c95dfd","2025-08-03 16:22:45 +0530"]
1+
[638,638,100,115,115,100,5,5,100,638,638,100,"5c457e24dc19497e02fe1692f36b185b74c4dfa5","2025-08-03 16:43:54 +0530"]

blas/base/dsyrk/dsyrk.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
336336
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
337337
*
338338
* @param {string} order - storage layout
339-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
339+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
340340
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
341341
* @param {NonNegativeInteger} N - order of the matrix `C`
342342
* @param {NonNegativeInteger} K - number of columns or number of rows of the matrix `A`
@@ -348,7 +348,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
348348
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
349349
* @throws {TypeError} first argument must be a valid order
350350
* @throws {TypeError} second argument must be a valid side
351-
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix is supplied.
351+
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix to be referenced.
352352
* @throws {RangeError} fourth argument must be a nonnegative integer
353353
* @throws {RangeError} fifth argument must be a nonnegative integer
354354
* @throws {RangeError} eighth argument must be greater than or equal to max(1,N) when `A` is not transposed and max(1,K) otherwise
@@ -376,7 +376,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
376376
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
377377
}
378378
if ( !isMatrixTriangle( uplo ) ) {
379-
throw new TypeError( format( 'invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
379+
throw new TypeError( format( 'invalid argument. Second argument must specify whether the lower or upper triangular matrix to be referenced. Value: `%s`.', uplo ) );
380380
}
381381
if ( !isMatrixTranspose( trans ) ) {
382382
throw new TypeError( format( 'invalid argument. Third argument must be a valid transpose operation. Value: `%s`.', trans ) );
@@ -424,7 +424,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
424424
<div class='footer quiet pad2 space-top1 center small'>
425425
Code coverage generated by
426426
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
427-
at 2025-08-03T10:54:28.647Z
427+
at 2025-08-03T11:15:20.598Z
428428
</div>
429429
<script src="../../../../prettify.js"></script>
430430
<script>

blas/base/dsyrk/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/dsyrk/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:54:28.647Z
164+
at 2025-08-03T11:15:20.598Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/base/dsyrk/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
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-08-03T10:54:28.647Z
283+
at 2025-08-03T11:15:20.598Z
284284
</div>
285285
<script src="../../../../prettify.js"></script>
286286
<script>

blas/base/dsyrk/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:54:28.647Z
178+
at 2025-08-03T11:15:20.598Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dsyrk/ndarray.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
276276
/**
277277
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
278278
*
279-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
279+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
280280
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
281281
* @param {NonNegativeInteger} N - order of the matrix `C`
282282
* @param {NonNegativeInteger} K - number of columns or number of rows of the matrix `A`
@@ -291,7 +291,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
291291
* @param {integer} strideC2 - stride of the second dimension of `C`
292292
* @param {NonNegativeInteger} offsetC - starting index for `C`
293293
* @throws {TypeError} first argument must be a valid side
294-
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix is supplied.
294+
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix to be referenced.
295295
* @throws {RangeError} third argument must be a nonnegative integer
296296
* @throws {RangeError} fourth argument must be a nonnegative integer
297297
* @throws {RangeError} twelfth argument must be non-zero
@@ -309,7 +309,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
309309
*/
310310
function dsyrk( uplo, trans, N, K, alpha, A, strideA1, strideA2, offsetA, beta, C, strideC1, strideC2, offsetC ) { // eslint-disable-line max-params, max-len
311311
if ( !isMatrixTriangle( uplo ) ) {
312-
throw new TypeError( format( 'invalid argument. First argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
312+
throw new TypeError( format( 'invalid argument. First argument must specify whether the lower or upper triangular matrix to be referenced. Value: `%s`.', uplo ) );
313313
}
314314
if ( !isMatrixTranspose( trans ) ) {
315315
throw new TypeError( format( 'invalid argument. Second argument must be a valid transpose operation. Value: `%s`.', trans ) );
@@ -340,7 +340,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
340340
<div class='footer quiet pad2 space-top1 center small'>
341341
Code coverage generated by
342342
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
343-
at 2025-08-03T10:54:28.647Z
343+
at 2025-08-03T11:15:20.598Z
344344
</div>
345345
<script src="../../../../prettify.js"></script>
346346
<script>

0 commit comments

Comments
 (0)