Skip to content

Commit 0620efe

Browse files
authored
chore: update parameter naming
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent df9d395 commit 0620efe

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/dgemv

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/dgemv/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ The function accepts the following arguments:
234234
void c_dgemv( const CBLAS_LAYOUT order, 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 )
235235
```
236236

237-
#### c_dgemv_ndarray( trans, M, N, alpha, \*A, sa1, sa2, oa, \*X, sx, ox, beta, \*Y, sy, oy )
237+
#### c_dgemv_ndarray( trans, M, N, alpha, \*A, strideA1, strideA2, offsetA, \*X, strideX, offsetX, beta, \*Y, strideY, offsetY )
238238

239239
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix using indexing alternative semantics.
240240

@@ -255,8 +255,8 @@ The function accepts the following arguments:
255255
- **N**: `[in] CBLAS_INT` number of columns in the matrix `A`.
256256
- **alpha**: `[in] double` scalar.
257257
- **A**: `[inout] double*` input matrix.
258-
- **sa1**: `[in] CBLAS_INT` stride of the first dimension of `A`.
259-
- **sa2**: `[in] CBLAS_INT` stride of the second dimension of `A`.
258+
- **strideA1**: `[in] CBLAS_INT` stride of the first dimension of `A`.
259+
- **strideA2**: `[in] CBLAS_INT` stride of the second dimension of `A`.
260260
- **oa**: `[in] CBLAS_INT` starting index for `A`.
261261
- **X**: `[in] double*` first input vector.
262262
- **strideX**: `[in] CBLAS_INT` index increment for `X`.

0 commit comments

Comments
 (0)