Skip to content

Commit c238fd5

Browse files
committed
chore: add implementation
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3cfb102 commit c238fd5

37 files changed

+745
-9
lines changed

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/column_major_l_l_nta_u.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
[ 7.0, 8.0, 9.0 ]
2222
],
2323
"ldb": 3,
24-
"B_out": [ 1.0, 2.0, -6.0, 2.0, 1.0, -3.0, 0.0, 0.0 ]
24+
"B_out": [ 1.0, 2.0, -6.0, 2.0, 1.0, -3.0, 3.0, 0.0, 0.0 ]
2525
}

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/column_major_r_l_nta_nu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"order": "column-major",
3-
"side": "left",
3+
"side": "right",
44
"uplo": "lower",
55
"transA": "no-transpose",
66
"diag": "non-unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/column_major_r_l_nta_u.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"order": "column-major",
3-
"side": "left",
3+
"side": "right",
44
"uplo": "lower",
55
"transA": "no-transpose",
66
"diag": "non-unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/column_major_r_l_ta_nu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"order": "column-major",
3-
"side": "left",
3+
"side": "right",
44
"uplo": "lower",
55
"transA": "transpose",
66
"diag": "non-unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/column_major_r_l_ta_u.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"order": "column-major",
3-
"side": "left",
3+
"side": "right",
44
"uplo": "lower",
55
"transA": "transpose",
66
"diag": "unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/ra_cb_r_l_nta_nu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"side": "left",
2+
"side": "right",
33
"uplo": "lower",
44
"transA": "no-transpose",
55
"diag": "non-unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/ra_cb_r_l_nta_u.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"side": "left",
2+
"side": "right",
33
"uplo": "lower",
44
"transA": "no-transpose",
55
"diag": "non-unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/ra_cb_r_l_ta_nu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"side": "left",
2+
"side": "right",
33
"uplo": "lower",
44
"transA": "transpose",
55
"diag": "non-unit",

lib/node_modules/@stdlib/blas/base/dtrsm/test/fixtures/ra_cb_r_l_ta_u.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"side": "left",
2+
"side": "right",
33
"uplo": "lower",
44
"transA": "transpose",
55
"diag": "unit",
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"side": "left",
3+
"uplo": "upper",
4+
"transA": "no-transpose",
5+
"diag": "non-unit",
6+
"M": 3,
7+
"N": 3,
8+
"alpha": 1.0,
9+
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
10+
"A_mat": [
11+
[ 1.0, 1.0, 1.0 ],
12+
[ 0.0, 1.0, 1.0 ],
13+
[ 0.0, 0.0, 1.0 ]
14+
],
15+
"strideA1": 3,
16+
"strideA2": 1,
17+
"offsetA": 0,
18+
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
19+
"B_mat": [
20+
[ 1.0, 1.0, 1.0 ],
21+
[ 1.0, 2.0, 1.0 ],
22+
[ 1.0, 1.0, 3.0 ]
23+
],
24+
"strideB1": 3,
25+
"strideB2": 1,
26+
"offsetB": 0,
27+
"B_out": [ 0.0, -1.0, 0.0, 0.0, 1.0, -2.0, 1.0, 1.0, 3.0 ]
28+
}

0 commit comments

Comments
 (0)