Skip to content

Commit de793e4

Browse files
committed
Update artifacts
1 parent ab8ebbf commit de793e4

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

blas/base/dtrsm/base.js.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
944944
* @private
945945
* @param {string} side - specifies whether `op( A )` appears on the left or right of `X`
946946
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
947-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
947+
* @param {string} transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
948948
* @param {string} diag - specifies whether or not `A` is unit triangular
949949
* @param {NonNegativeInteger} M - number of rows in `B`
950950
* @param {NonNegativeInteger} N - number of columns in `B`
@@ -965,7 +965,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
965965
* var A = new Float64Array( [ 1.0, 0.0, 0.0, 2.0, 3.0, 0.0, 4.0, 5.0, 6.0 ] );
966966
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
967967
*
968-
* dtrsm( left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 );
968+
* dtrsm( 'left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 );
969969
* // B =&gt; &lt;Float64Array&gt;[ 1.0, 2.0, 3.0, 2.0, 1.0, 0.0, -7.0, -5.0, -3.0 ]
970970
*/
971971
function dtrsm( side, uplo, transa, diag, M, N, alpha, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB ) { // eslint-disable-line max-params
@@ -1019,7 +1019,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10191019
tmp = 1.0 / A[ oa2 ];
10201020
for ( i = 0; i &lt; M; i++ ) {
10211021
ob2 = offsetB + ( i * sb0 ) + ( k * sb1 );
1022-
B[ ob2 ] = B[ ob2 ] * tmp;
1022+
B[ ob2 ] *= tmp;
10231023
}
10241024
}
10251025
for ( j = 0; j &lt; k; j++ ) {
@@ -1034,7 +1034,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10341034
if ( alpha !== 1.0 ) {
10351035
for ( i = 0; i &lt; M; i++ ) {
10361036
ob2 = offsetB + ( i * sb0 ) + ( k * sb1 );
1037-
B[ ob2 ] = B[ ob2 ] * alpha;
1037+
B[ ob2 ] *= alpha;
10381038
}
10391039
}
10401040
}
@@ -1056,7 +1056,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10561056
ob2 = ob + ( k * sb1 );
10571057
if ( B[ ob2 ] !== 0.0 ) {
10581058
if ( nonunit ) {
1059-
B[ ob2 ] = B[ ob2 ] / A[ oa2 ];
1059+
B[ ob2 ] /= A[ oa2 ];
10601060
}
10611061
for ( i = k + 1; i &lt; M; i++ ) {
10621062
oa2 = offsetA + ( i * sa1 ) + ( k * sa0 );
@@ -1075,7 +1075,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10751075
for ( i = 0; i &lt; M; i++ ) {
10761076
ob2 = offsetB + ( i * sb0 ) + ( j * sb1 );
10771077
if ( alpha !== 1.0 ) {
1078-
B[ ob2 ] = B[ ob2 ] * alpha;
1078+
B[ ob2 ] *= alpha;
10791079
}
10801080
}
10811081
for ( k = 0; k &lt; j; k++ ) {
@@ -1092,7 +1092,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
10921092
tmp = 1.0 / A[ oa2 ];
10931093
for ( i = 0; i &lt; M; i++ ) {
10941094
ob2 = offsetB + ( i * sb0 ) + ( j * sb1 );
1095-
B[ ob2 ] = B[ ob2 ] * tmp;
1095+
B[ ob2 ] *= tmp;
10961096
}
10971097
}
10981098
}
@@ -1117,7 +1117,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11171117
}
11181118
if ( nonunit ) {
11191119
oa2 = offsetA + ( i * sa0 ) + ( i * sa1 );
1120-
B[ ob2 ] = B[ ob2 ] / A[ oa2 ];
1120+
B[ ob2 ] /= A[ oa2 ];
11211121
}
11221122
B[ ob + ( i * sb1 ) ] = B[ ob2 ];
11231123
}
@@ -1138,7 +1138,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11381138
tmp -= A[ oa + ( i * sa0 ) ] * B[ ob + ( k * sb0 ) ];
11391139
}
11401140
if ( nonunit ) {
1141-
tmp = tmp / A[ oa2 ];
1141+
tmp /= A[ oa2 ];
11421142
}
11431143
B[ ob + ( i * sb0 ) ] = tmp;
11441144
}
@@ -1153,7 +1153,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11531153
for ( i = 0; i &lt; M; i++ ) {
11541154
ob2 = offsetB + ( i * sb1 ) + ( j * sb0 );
11551155
if ( alpha !== 1.0 ) {
1156-
B[ ob2 ] = B[ ob2 ] * alpha;
1156+
B[ ob2 ] *= alpha;
11571157
}
11581158
}
11591159
for ( k = j + 1; k &lt; N; k++ ) {
@@ -1170,7 +1170,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11701170
tmp = 1.0 / A[ oa2 ];
11711171
for ( i = 0; i &lt; M; i++ ) {
11721172
ob2 = offsetB + ( i * sb1 ) + ( j * sb0 );
1173-
B[ ob2 ] = B[ ob2 ] * tmp;
1173+
B[ ob2 ] *= tmp;
11741174
}
11751175
}
11761176
}
@@ -1192,7 +1192,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
11921192
ob2 = ob + ( k * sb0 );
11931193
if ( B[ ob2 ] !== 0.0 ) {
11941194
if ( nonunit ) {
1195-
B[ ob2 ] = B[ ob2 ] / A[ oa2 ];
1195+
B[ ob2 ] /= A[ oa2 ];
11961196
}
11971197
for ( i= 0; i &lt; k; i++ ) {
11981198
oa = offsetA + ( i * sa1 ) + ( k * sa0 );
@@ -1243,7 +1243,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
12431243
<div class='footer quiet pad2 space-top1 center small'>
12441244
Code coverage generated by
12451245
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1246-
at 2025-06-15T14:11:08.093Z
1246+
at 2025-06-15T15:25:17.794Z
12471247
</div>
12481248
<script src="../../../../prettify.js"></script>
12491249
<script>

blas/base/dtrsm/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[724,724,100,173,173,100,4,4,100,724,724,100,"75101f6febd76a11f4866159239599fce5f8db83","2025-06-15 19:40:07 +0530"]
1+
[724,724,100,173,173,100,4,4,100,724,724,100,"e8606d98bddc14458ea7da3ebac23abce0bdb20e","2025-06-15 20:52:01 +0530"]

blas/base/dtrsm/dtrsm.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
363363
* @param {string} order - storage layout of `A` and `B`
364364
* @param {string} side - specifies whether `op( A )` appears on the left or right of `X`
365365
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
366-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
366+
* @param {string} transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
367367
* @param {string} diag - specifies whether or not `A` is unit triangular
368368
* @param {NonNegativeInteger} M - number of rows in `B`
369369
* @param {NonNegativeInteger} N - number of columns in `B`
@@ -457,7 +457,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
457457
<div class='footer quiet pad2 space-top1 center small'>
458458
Code coverage generated by
459459
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
460-
at 2025-06-15T14:11:08.093Z
460+
at 2025-06-15T15:25:17.794Z
461461
</div>
462462
<script src="../../../../prettify.js"></script>
463463
<script>

blas/base/dtrsm/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/dtrsm/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-15T14:11:08.093Z
164+
at 2025-06-15T15:25:17.794Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/base/dtrsm/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
241241
* var A = new Float64Array( [ 1.0, 0.0, 0.0, 2.0, 3.0, 0.0, 4.0, 5.0, 6.0 ] );
242242
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
243243
*
244-
* dtrsm.ndarray( left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 );
244+
* dtrsm.ndarray( 'left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 );
245245
* // B =&gt; &lt;Float64Array&gt;[ 1.0, 2.0, 3.0, 2.0, 1.0, 0.0, -7.0, -5.0, -3.0 ]
246246
*/
247247
&nbsp;
@@ -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-15T14:11:08.093Z
277+
at 2025-06-15T15:25:17.794Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

blas/base/dtrsm/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-15T14:11:08.093Z
178+
at 2025-06-15T15:25:17.794Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/dtrsm/ndarray.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
302302
*
303303
* @param {string} side - specifies whether `op( A )` appears on the left or right of `X`
304304
* @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
305+
* @param {string} transa - specifies whether `op( 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`
@@ -331,7 +331,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
331331
* var A = new Float64Array( [ 1.0, 0.0, 0.0, 2.0, 3.0, 0.0, 4.0, 5.0, 6.0 ] );
332332
* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
333333
*
334-
* dtrsm( left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 );
334+
* dtrsm( 'left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 );
335335
* // B =&gt; &lt;Float64Array&gt;[ 1.0, 2.0, 3.0, 2.0, 1.0, 0.0, -7.0, -5.0, -3.0 ]
336336
*/
337337
function dtrsm( side, uplo, transa, diag, M, N, alpha, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB ) { // eslint-disable-line max-len, max-params
@@ -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-15T14:11:08.093Z
376+
at 2025-06-15T15:25:17.794Z
377377
</div>
378378
<script src="../../../../prettify.js"></script>
379379
<script>

0 commit comments

Comments
 (0)