Skip to content

Commit 8c183a9

Browse files
committed
chore: fix C lint errors
--- 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: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent b29703e commit 8c183a9

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

lib/node_modules/@stdlib/blas/base/dgemm/include/stdlib/blas/base/dgemm.cblas.h renamed to lib/node_modules/@stdlib/blas/base/dgemm/include/stdlib/blas/base/dgemm_cblas.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
/**
20-
* Header file containing function declarations for the C interface to the BLAS Level 2 routine `dgemv`.
20+
* Header file containing function declarations for the C interface to the CBLAS Level 3 routine `cblas_dgemm`.
2121
*/
2222
#ifndef STDLIB_BLAS_BASE_DGEMM_CBLAS_H
2323
#define STDLIB_BLAS_BASE_DGEMM_CBLAS_H
@@ -39,7 +39,7 @@ void API_SUFFIX(c_dgemm)( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans
3939
/**
4040
* Performs the matrix-matrix operation `C = α*op(A)*op(B) + β*C` where `op(X)` is either `op(X) = X` or `op(X) = X^T`, `α` and `β` are scalars, `A`, `B`, and `C` are matrices, with `op(A)` an `M` by `K` matrix, `op(B)` a `K` by `N` matrix, and `C` an `M` by `N` matrix.
4141
*/
42-
void API_SUFFIX(c_dgemm_ndarray)( const CBLAS_TRANSPOSE transA, const CLBAS_TRANSPOSE transB, const CBLAS_INT M, const CBLAS_INT N, const CBLAS_INT K, const double alpha, const double *A, const CBLAS_INT strideA1, const CBLAS_INT strideA2, const CBLAS_INT offsetA, const double *B, const CBLAS_INT strideB1, const CBLAS_INT strideB2, const CBLAS_INT offsetB, const double beta, const double *C, const CBLAS_INT strideC1, const CBLAS_INT strideC2, const CBLAS_INT offsetC );
42+
void API_SUFFIX(c_dgemm_ndarray)( const CBLAS_TRANSPOSE transA, const CBLAS_TRANSPOSE transB, const CBLAS_INT M, const CBLAS_INT N, const CBLAS_INT K, const double alpha, const double *A, const CBLAS_INT strideA1, const CBLAS_INT strideA2, const CBLAS_INT offsetA, const double *B, const CBLAS_INT strideB1, const CBLAS_INT strideB2, const CBLAS_INT offsetB, const double beta, const double *C, const CBLAS_INT strideC1, const CBLAS_INT strideC2, const CBLAS_INT offsetC );
4343

4444
#ifdef __cplusplus
4545
}

lib/node_modules/@stdlib/blas/base/dgemm/src/dgemm_ndarray.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,6 @@ void API_SUFFIX(c_dgemm_ndarray)( const CBLAS_TRANSPOSE transA, const CBLAS_TRAN
308308
CBLAS_INT sa2;
309309
CBLAS_INT sb1;
310310
CBLAS_INT sb2;
311-
CBLAS_INT sc1;
312-
CBLAS_INT sc2;
313311
bool isrma;
314312
bool isrmb;
315313

0 commit comments

Comments
 (0)