pub unsafe fn daxpy(
n: usize,
alpha: f64,
x: *const f64,
incx: usize,
y: *mut f64,
incy: usize,
)
Expand description
Performs a SIMD-accelerated AXPY operation.
ยงArguments
n
- The number of elements in vectorsx
andy
.alpha
- The scalar multiplieralpha
.x
- A raw constant pointer to the first element of vectorx
.incx
- The stride between consecutive elements ofx
.y
- A raw mutable pointer to the first element of vectory
.incy
- The stride between consecutive elements ofy
.