Skip to content

Commit caef577

Browse files
committed
Update artifacts
1 parent b12a914 commit caef577

File tree

7 files changed

+142
-139
lines changed

7 files changed

+142
-139
lines changed

blas/base/dtrmm/base.js.html

Lines changed: 119 additions & 116 deletions
Large diffs are not rendered by default.

blas/base/dtrmm/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[692,692,100,158,158,100,4,4,100,692,692,100,"b777f9e6288937f89b36282de11ee560042bb26a","2025-06-27 15:59:52 +0530"]
1+
[693,693,100,154,154,100,4,4,100,693,693,100,"463d580a02bcc50a08ee819a075ef2c898e2b6bc","2025-07-04 14:27:32 +0530"]

blas/base/dtrmm/dtrmm.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -355,12 +355,12 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
355355
// MAIN //
356356
&nbsp;
357357
/**
358-
* Performs one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A**T`.
358+
* Performs one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A^T`.
359359
*
360360
* @param {string} order - storage layout of `A` and `B`
361361
* @param {string} side - specifies whether `op( A )` appears on the left or right side of `B`
362-
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
363-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
362+
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` should be referenced
363+
* @param {string} transa - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
364364
* @param {string} diag - specifies whether or not `A` is unit triangular
365365
* @param {NonNegativeInteger} M - number of rows in `B`
366366
* @param {NonNegativeInteger} N - number of columns in `B`
@@ -371,7 +371,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
371371
* @param {NonNegativeInteger} LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
372372
* @throws {TypeError} first argument must be a valid order
373373
* @throws {TypeError} second argument must be a valid side
374-
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix is supplied
374+
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix should be referenced
375375
* @throws {TypeError} fourth argument must specify correct transpose operation
376376
* @throws {TypeError} fifth argument must specify whether the matrix is unit triangular or not
377377
* @throws {RangeError} sixth argument must be a nonnegative integer
@@ -403,7 +403,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
403403
throw new TypeError( format( 'invalid argument. Second argument must be a valid side. Value: `%s`.', side ) );
404404
}
405405
if ( !isMatrixTriangle( uplo ) ) {
406-
throw new TypeError( format( 'invalid argument. Third argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
406+
throw new TypeError( format( 'invalid argument. Third argument must specify whether the lower or upper triangular matrix should be referenced. Value: `%s`.', uplo ) );
407407
}
408408
if ( !isTransposeOperation( transa ) ) {
409409
throw new TypeError( format( 'invalid argument. Fourth argument must specify correct transpose operation. Value: `%s`.', transa ) );
@@ -454,7 +454,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
454454
<div class='footer quiet pad2 space-top1 center small'>
455455
Code coverage generated by
456456
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
457-
at 2025-06-27T10:31:25.637Z
457+
at 2025-07-04T08:59:42.376Z
458458
</div>
459459
<script src="../../../../prettify.js"></script>
460460
<script>

blas/base/dtrmm/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dtrmm/lib</h1>
2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>692/692</span>
28+
<span class='fraction'>693/693</span>
2929
</div>
3030

3131

3232
<div class='fl pad1y space-right2'>
3333
<span class="strong">100% </span>
3434
<span class="quiet">Branches</span>
35-
<span class='fraction'>158/158</span>
35+
<span class='fraction'>154/154</span>
3636
</div>
3737

3838

@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dtrmm/lib</h1>
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>692/692</span>
49+
<span class='fraction'>693/693</span>
5050
</div>
5151

5252

@@ -84,13 +84,13 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dtrmm/lib</h1>
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>
8686
<td data-value="100" class="pct high">100%</td>
87-
<td data-value="360" class="abs high">360/360</td>
87+
<td data-value="361" class="abs high">361/361</td>
8888
<td data-value="100" class="pct high">100%</td>
89-
<td data-value="111" class="abs high">111/111</td>
89+
<td data-value="107" class="abs high">107/107</td>
9090
<td data-value="100" class="pct high">100%</td>
9191
<td data-value="2" class="abs high">2/2</td>
9292
<td data-value="100" class="pct high">100%</td>
93-
<td data-value="360" class="abs high">360/360</td>
93+
<td data-value="361" class="abs high">361/361</td>
9494
</tr>
9595

9696
<tr>
@@ -161,7 +161,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/dtrmm/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-06-27T10:31:25.637Z
164+
at 2025-07-04T08:59:42.376Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/base/dtrmm/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
220220
'use strict';
221221
&nbsp;
222222
/**
223-
* BLAS level 3 routine to perform one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A**T`.
223+
* BLAS level 3 routine to perform one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A^T`.
224224
*
225225
* @module @stdlib/blas/base/dtrmm
226226
*
@@ -274,7 +274,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
274274
<div class='footer quiet pad2 space-top1 center small'>
275275
Code coverage generated by
276276
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
277-
at 2025-06-27T10:31:25.637Z
277+
at 2025-07-04T08:59:42.376Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

blas/base/dtrmm/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-06-27T10:31:25.637Z
178+
at 2025-07-04T08:59:42.376Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dtrmm/ndarray.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,11 +298,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
298298
// MAIN //
299299
&nbsp;
300300
/**
301-
* Performs one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A**T`.
301+
* Performs one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A^T`.
302302
*
303303
* @param {string} side - specifies whether `op( A )` appears on the left or right side of `B`
304-
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
305-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
304+
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` should be referenced
305+
* @param {string} transa - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
306306
* @param {string} diag - specifies whether or not `A` is unit triangular
307307
* @param {NonNegativeInteger} M - number of rows in `B`
308308
* @param {NonNegativeInteger} N - number of columns in `B`
@@ -316,7 +316,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
316316
* @param {integer} strideB2 - stride of the second dimension of `B`
317317
* @param {NonNegativeInteger} offsetB - starting index for `B`
318318
* @throws {TypeError} first argument must be a valid side
319-
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix is supplied.
319+
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix should be referenced.
320320
* @throws {TypeError} third argument must specify correct transpose operation
321321
* @throws {TypeError} fourth argument must specify whether the matrix is unit triangular or not
322322
* @throws {RangeError} fifth argument must be a nonnegative integer
@@ -339,7 +339,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
339339
throw new TypeError( format( 'invalid argument. First argument must be a valid side. Value: `%s`.', side ) );
340340
}
341341
if ( !isMatrixTriangle( uplo ) ) {
342-
throw new TypeError( format( 'invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
342+
throw new TypeError( format( 'invalid argument. Second argument must specify whether the lower or upper triangular matrix should be referenced. Value: `%s`.', uplo ) );
343343
}
344344
if ( !isTransposeOperation( transa ) ) {
345345
throw new TypeError( format( 'invalid argument. Third argument must specify correct transpose operation. Value: `%s`.', transa ) );
@@ -373,7 +373,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
373373
<div class='footer quiet pad2 space-top1 center small'>
374374
Code coverage generated by
375375
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
376-
at 2025-06-27T10:31:25.637Z
376+
at 2025-07-04T08:59:42.376Z
377377
</div>
378378
<script src="../../../../prettify.js"></script>
379379
<script>

0 commit comments

Comments
 (0)