MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / DoubleComplex makeScalar

Function DoubleComplex makeScalar

src/client/clfunc_common.hpp:62–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60
61template<>
62__template_static DoubleComplex
63makeScalar(double val)
64{
65 DoubleComplex c;
66
67 c.s[0] = val;
68 c.s[1] = 0;
69
70 return c;
71}
72
73template<typename T>
74static T

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected