Skip to content

Commit df63ec6

Browse files
committed
Update artifacts
1 parent f03f228 commit df63ec6

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

blas/base/dtrmm/base.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -869,21 +869,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
869869
// MAIN //
870870
&nbsp;
871871
/**
872-
* 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`.
872+
* 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`.
873873
*
874874
* @private
875-
* @param {string} side - specifies whether `op( A )` multiplies `B` from the left or right
875+
* @param {string} side - specifies whether `op( A )` appears on the left or right side of `B`
876876
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
877877
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
878878
* @param {string} diag - specifies whether or not `A` is unit triangular
879879
* @param {NonNegativeInteger} M - number of rows in `B`
880880
* @param {NonNegativeInteger} N - number of columns in `B`
881881
* @param {number} alpha - scalar constant
882-
* @param {Float64Array} A - input matrix `A`
882+
* @param {Float64Array} A - first input matrix
883883
* @param {integer} strideA1 - stride of the first dimension of `A`
884884
* @param {integer} strideA2 - stride of the second dimension of `A`
885885
* @param {NonNegativeInteger} offsetA - starting index for `A`
886-
* @param {Float64Array} B - input matrix `B`
886+
* @param {Float64Array} B - second input matrix
887887
* @param {integer} strideB1 - stride of the first dimension of `B`
888888
* @param {integer} strideB2 - stride of the second dimension of `B`
889889
* @param {NonNegativeInteger} offsetB - starting index for `B`
@@ -1138,7 +1138,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11381138
<div class='footer quiet pad2 space-top1 center small'>
11391139
Code coverage generated by
11401140
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1141-
at 2025-06-15T12:55:22.858Z
1141+
at 2025-06-27T08:20:08.440Z
11421142
</div>
11431143
<script src="../../../../prettify.js"></script>
11441144
<script>

blas/base/dtrmm/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[688,688,100,158,158,100,4,4,100,688,688,100,"43188c3ceab6e3afcf8988e1c0e9324314166dd1","2025-06-15 18:24:20 +0530"]
1+
[688,688,100,158,158,100,4,4,100,688,688,100,"fea45b23a08a96e4a7ab9f8292c4b0c8092875cf","2025-06-27 13:47:06 +0530"]

blas/base/dtrmm/dtrmm.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -341,33 +341,33 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
341341
&nbsp;
342342
// MODULES //
343343
&nbsp;
344-
var max = require( '@stdlib/math/base/special/fast/max' );
344+
var isColumnMajor = require( '@stdlib/ndarray/base/assert/is-column-major-string' );
345345
var isLayout = require( '@stdlib/blas/base/assert/is-layout' );
346-
var isMatrixTriangle = require( '@stdlib/blas/base/assert/is-matrix-triangle' );
347346
var isOperationSide = require( '@stdlib/blas/base/assert/is-operation-side' );
347+
var isMatrixTriangle = require( '@stdlib/blas/base/assert/is-matrix-triangle' );
348348
var isTransposeOperation = require( '@stdlib/blas/base/assert/is-transpose-operation' );
349349
var isDiagonalType = require( '@stdlib/blas/base/assert/is-diagonal-type' );
350-
var isColumnMajor = require( '@stdlib/ndarray/base/assert/is-column-major-string' );
350+
var max = require( '@stdlib/math/base/special/fast/max' );
351351
var format = require( '@stdlib/string/format' );
352352
var base = require( './base.js' );
353353
&nbsp;
354354
&nbsp;
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`
361-
* @param {string} side - specifies whether `op( A )` multiplies `B` from the left or right
361+
* @param {string} side - specifies whether `op( A )` appears on the left or right side of `B`
362362
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
363363
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
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`
367367
* @param {number} alpha - scalar constant
368-
* @param {Float64Array} A - input matrix `A`
368+
* @param {Float64Array} A - first input matrix
369369
* @param {NonNegativeInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
370-
* @param {Float64Array} B - input matrix `B`
370+
* @param {Float64Array} B - second input matrix
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
@@ -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-15T12:55:22.858Z
457+
at 2025-06-27T08:20:08.440Z
458458
</div>
459459
<script src="../../../../prettify.js"></script>
460460
<script>

blas/base/dtrmm/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/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-15T12:55:22.858Z
164+
at 2025-06-27T08:20:08.440Z
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 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 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-15T12:55:22.858Z
277+
at 2025-06-27T08:20:08.440Z
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-15T12:55:22.858Z
178+
at 2025-06-27T08:20:08.440Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dtrmm/ndarray.js.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -287,31 +287,31 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
287287
&nbsp;
288288
// MODULES //
289289
&nbsp;
290-
var isMatrixTriangle = require( '@stdlib/blas/base/assert/is-matrix-triangle' );
290+
var format = require( '@stdlib/string/format' );
291291
var isOperationSide = require( '@stdlib/blas/base/assert/is-operation-side' );
292+
var isMatrixTriangle = require( '@stdlib/blas/base/assert/is-matrix-triangle' );
292293
var isTransposeOperation = require( '@stdlib/blas/base/assert/is-transpose-operation' );
293294
var isDiagonalType = require( '@stdlib/blas/base/assert/is-diagonal-type' );
294-
var format = require( '@stdlib/string/format' );
295295
var base = require( './base.js' );
296296
&nbsp;
297297
&nbsp;
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
*
303-
* @param {string} side - specifies whether `op( A )` multiplies `B` from the left or right
303+
* @param {string} side - specifies whether `op( A )` appears on the left or right side of `B`
304304
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
305305
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
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`
309309
* @param {number} alpha - scalar constant
310-
* @param {Float64Array} A - input matrix `A`
310+
* @param {Float64Array} A - first input matrix
311311
* @param {integer} strideA1 - stride of the first dimension of `A`
312312
* @param {integer} strideA2 - stride of the second dimension of `A`
313313
* @param {NonNegativeInteger} offsetA - starting index for `A`
314-
* @param {Float64Array} B - input matrix `B`
314+
* @param {Float64Array} B - second input matrix
315315
* @param {integer} strideB1 - stride of the first dimension of `B`
316316
* @param {integer} strideB2 - stride of the second dimension of `B`
317317
* @param {NonNegativeInteger} offsetB - starting index for `B`
@@ -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-15T12:55:22.858Z
376+
at 2025-06-27T08:20:08.440Z
377377
</div>
378378
<script src="../../../../prettify.js"></script>
379379
<script>

0 commit comments

Comments
 (0)