You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### c_sgemv_ndarray( trans, M, N, alpha, \*A, sa1, sa2, oa, \*X, sx, ox, beta, \*Y, sy, oy )
237
+
#### c_sgemv_ndarray( trans, M, N, alpha, \*A, strideA1, strideA2, offsetA, \*X, strideX, offsetX, beta, \*Y, strideY, offsetY )
238
238
239
239
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.
240
240
@@ -255,9 +255,9 @@ The function accepts the following arguments:
255
255
- **N**: `[in] CBLAS_INT` number of columns in the matrix `A`.
256
256
- **alpha**: `[in] float` scalar.
257
257
- **A**: `[inout] float*` 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`.
260
-
- **oa**: `[in] CBLAS_INT` starting index for `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`.
260
+
- **offsetA**: `[in] CBLAS_INT` starting index for `A`.
261
261
- **X**: `[in] float*` first input vector.
262
262
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
263
263
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
0 commit comments