MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / operator*

Function operator*

src/tests/include/blas-math.h:72–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72static inline FloatComplex
73operator*(FloatComplex a, FloatComplex b)
74{
75 return floatComplex(
76 CREAL(a) * CREAL(b) - CIMAG(a) * CIMAG(b),
77 CREAL(a) * CIMAG(b) + CREAL(b) * CIMAG(a));
78}
79
80static inline FloatComplex
81operator*(FloatComplex a, cl_float b)

Callers

nothing calls this directly

Calls 2

floatComplexFunction · 0.50
doubleComplexFunction · 0.50

Tested by

no test coverage detected