The OpenD Programming Language

_glas_cdotc

Forms the dot product of two complex vectors. Uses unrolled loops for increments equal to one.

More...
extern (C) nothrow @nogc @system pure
cfloat
_glas_cdotc
(
size_t n
,
ptrdiff_t incx
,
const(cfloat)* x
,
ptrdiff_t incy
,
const(cfloat)* y
)

Detailed Description

Unified alias

dotc

Pseudo code

X^H * Y

BLAS: CDOTC, ZDOTC

Meta