The OpenD Programming Language

glas_sdot

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

More...
extern (C) nothrow @nogc @system pure
float
glas_sdot
(
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: SDOT, DDOT

Meta