Intel® oneAPI Math Kernel Library Developer Reference - C
Computes a vector-vector dot product.
float cblas_sdot (const MKL_INT n, const float *x, const MKL_INT incx, const float *y, const MKL_INT incy);
double cblas_ddot (const MKL_INT n, const double *x, const MKL_INT incx, const double *y, const MKL_INT incy);
The ?dot routines perform a vector-vector reduction operation defined as
where xi and yi are elements of vectors x and y.
Specifies the number of elements in vectors x and y.
Array, size at least (1+(n-1)*abs(incx)).
Specifies the increment for the elements of x.
Array, size at least (1+(n-1)*abs(incy)).
Specifies the increment for the elements of y.
The result of the dot product of x and y, if n is positive. Otherwise, returns 0.