The OpenD Programming Language

_glas_dsdot

Compute the inner product of two vectors with extended precision accumulation and result. Uses unrolled loops for increments equal to one.

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

Detailed Description

Unified alias

dot

Pseudo code

X^T * Y

BLAS: DSDOT

Meta