Visible to Intel only — GUID: GUID-93DA36DC-40CA-4C01-B883-DABAB0D378D4
Visible to Intel only — GUID: GUID-93DA36DC-40CA-4C01-B883-DABAB0D378D4
cblas_?dot
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);
- mkl.h
The ?dot routines perform a vector-vector reduction operation defined as
where xi and yi are elements of vectors x and y.
- n
-
Specifies the number of elements in vectors x and y.
- x
-
Array, size at least (1+(n-1)*abs(incx)).
- incx
-
Specifies the increment for the elements of x.
- y
-
Array, size at least (1+(n-1)*abs(incy)).
- 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.