The OpenD Programming Language

_glas_ddot

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

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

Detailed Description

Unified alias

dot

Pseudo code

X^T * Y

BLAS: SDOT, DDOT

Meta