There are certain BLAS routines that take as parameter the increment of a vector X, namely incX. I can't find what the increment is and how it affects the result of the computation.
Can anyone provide some example or any other kind of info ?
Update:
I've found here the best info: Intel HPC mkl manual
This is quite simple actually.
Let take the example of
axpy(n,a,*x,incx,*y,incy)which compute :y = ax + yIf, for example, you need to compute :
Then your call is :
axpy(3,a,x,2,y,1)But usually, for basic operations, you just have to specify
incx = incy = 1