Skip to content

Commit 8975153

Browse files
committed
chore: clean-up
--- 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: passed - 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 0d5cbdf commit 8975153

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/dsymm/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/dsymm/lib/dsymm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ function dsymm( order, side, uplo, M, N, alpha, A, LDA, B, LDB, beta, C, LDC ) {
103103
if ( LDA < max( 1, nrowsa ) ) {
104104
throw new RangeError( format( 'invalid argument. Eighth argument must be greater than or equal to max(1,%d). Value: `%d`.', nrowsa, LDA ) );
105105
}
106+
isrm = isRowMajor( order );
107+
iscm = isColumnMajor( order );
106108
if ( isrm ) {
107109
val = N;
108110
} else {
@@ -114,8 +116,6 @@ function dsymm( order, side, uplo, M, N, alpha, A, LDA, B, LDB, beta, C, LDC ) {
114116
if ( LDC < max( 1, val ) ) {
115117
throw new RangeError( format( 'invalid argument. Thirteenth argument must be greater than or equal to max(1,%d). Value: `%d`.', val, LDC ) );
116118
}
117-
isrm = isRowMajor( order );
118-
iscm = isColumnMajor( order );
119119
if ( iscm ) {
120120
sa1 = 1;
121121
sa2 = LDA;

0 commit comments

Comments
 (0)