Skip to content

Commit e34aa06

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: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f1e8702 commit e34aa06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/dgemv/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( order, trans, M, N, α, A, lda, x, sx, β, y, sy )
33
Performs one of the matrix-vector operations `y = α*A*x + β*y` or
4-
`y = α*A**T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are
4+
`y = α*A^T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are
55
vectors, and `A` is an `M` by `N` matrix.
66

77
Indexing is relative to the first index. To introduce an offset, use typed
@@ -87,7 +87,7 @@
8787

8888
{{alias}}.ndarray( trans, M, N, α, A, sa1, sa2, oa, x, sx, ox, β, y, sy, oy )
8989
Performs one of the matrix-vector operations `y = α*A*x + β*y` or
90-
`y = α*A**T*x + β*y`, using alternative indexing semantics and where `α` and
90+
`y = α*A^T*x + β*y`, using alternative indexing semantics and where `α` and
9191
`β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
9292

9393
While typed array views mandate a view offset based on the underlying

lib/node_modules/@stdlib/blas/base/dgemv/src/dgemv_cblas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
* @param strideY `y` stride length
3838
* @return output value
3939
*/
40-
void API_SUFFIX(c_dgemv)( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans, const CBLAS_INT M, const CBLAS_INT N, const double alpha, const double *A, const CBLAS_INT LDA, const double *X, const CBLAS_INT strideX, const double beta, const double *Y, const CBLAS_INT strideY ) {
40+
void API_SUFFIX(c_dgemv)( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans, const CBLAS_INT M, const CBLAS_INT N, const double alpha, const double *A, const CBLAS_INT LDA, const double *X, const CBLAS_INT strideX, const double beta, double *Y, const CBLAS_INT strideY ) {
4141
API_SUFFIX(cblas_dgemv)( layout, trans, M, N, alpha, A, LDA, X, strideX, beta, Y, strideY );
4242
}

0 commit comments

Comments
 (0)