Open
Description
Hi,
Low-level BLAS routines allow specification of a stride. Methods in LinearAlgebra.BLAS
follow suit. For example, LinearAlgebra.BLAS.scal!(n, a, X, incx)
takes n
and incx
parameters, and is publicly defined in the LinearAlgebra.BLAS API .
A curious exception is that LinearAlgebra.BLAS.axpy!(n, alpha, dx, incx, dy, incy)
is not documented in the public API. Instead, only LinearAlgebra.axpy!(a, X, Y)
is documented. Perhaps this is an oversight?