| 48 | |
| 49 | //helper functions to conjugate the argument if supported |
| 50 | template<typename Scalar, bool _IsConjugated> __device__ CUMAT_STRONG_INLINE Scalar conjugateCoeff(const Scalar& val) { return val; }; |
| 51 | template<> __device__ CUMAT_STRONG_INLINE cfloat conjugateCoeff<cfloat, true>(const cfloat& val) { return conj(val); } |
| 52 | template<> __device__ CUMAT_STRONG_INLINE cdouble conjugateCoeff<cdouble, true>(const cdouble& val) { return conj(val); } |
| 53 | } //end namespace internal |
nothing calls this directly
no outgoing calls
no test coverage detected