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
(
Slice!(SliceKind.universal, [1], const(float)*) xsl
,
Slice!(SliceKind.universal, [1], const(float)*) ysl
)

Detailed Description

Unified alias

dot

Pseudo code

X^T * Y

BLAS: DSDOT

Meta