Visible to Intel only — GUID: GUID-3605ACD9-02D1-46D7-B791-F2F76F0D9AEA
Visible to Intel only — GUID: GUID-3605ACD9-02D1-46D7-B791-F2F76F0D9AEA
cblas_?dotu
Computes a complex vector-vector dot product.
void cblas_cdotu_sub (const MKL_INT n, const void *x, const MKL_INT incx, const void *y, const MKL_INT incy, void *dotu);
void cblas_zdotu_sub (const MKL_INT n, const void *x, const MKL_INT incx, const void *y, const MKL_INT incy, void *dotu);
- mkl.h
The ?dotu routines perform a vector-vector reduction operation defined as
where xi and yi are elements of complex 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.
- dotu
-
Contains the result of the dot product of x and y, if n is positive. Otherwise, it contains 0.