35#ifndef _BLAZE_MATH_FUNCTORS_QDRT_H_
36#define _BLAZE_MATH_FUNCTORS_QDRT_H_
91 template<
typename T >
94 return qdrt( std::forward<T>( a ) );
103 template<
typename T >
121 template<
typename T >
142template<
typename T >
143struct YieldsUniform<Qdrt,T>
144 :
public IsUniform<T>
160template<
typename MT >
161struct YieldsSymmetric<Qdrt,MT>
162 :
public IsSymmetric<MT>
178template<
typename MT >
179struct YieldsHermitian<Qdrt,MT>
180 :
public IsHermitian<MT>
196template<
typename MT >
197struct YieldsLower<Qdrt,MT>
214template<
typename MT >
215struct YieldsUniLower<Qdrt,MT>
216 :
public IsUniLower<MT>
232template<
typename MT >
233struct YieldsStrictlyLower<Qdrt,MT>
234 :
public IsStrictlyLower<MT>
250template<
typename MT >
251struct YieldsUpper<Qdrt,MT>
268template<
typename MT >
269struct YieldsUniUpper<Qdrt,MT>
270 :
public IsUniUpper<MT>
286template<
typename MT >
287struct YieldsStrictlyUpper<Qdrt,MT>
288 :
public IsStrictlyUpper<MT>
304template<
typename T >
305struct YieldsZero<Qdrt,T>
Header file for the HasSIMDSqrt type trait.
Macro for CUDA compatibility.
Header file for the IsHermitian type trait.
Header file for the IsLower type trait.
Header file for the IsStrictlyLower type trait.
Header file for the IsStrictlyUpper type trait.
Header file for the IsSymmetric type trait.
Header file for the IsUniLower type trait.
Header file for the IsUniUpper type trait.
Header file for the IsUpper type trait.
Header file for the YieldsHermitian type trait.
Header file for the YieldsLower type trait.
Header file for the YieldsStrictlyLower type trait.
Header file for the YieldsStrictlyUpper type trait.
Header file for the YieldsSymmetric type trait.
Header file for the YieldsUniLower type trait.
Header file for the YieldsUniUpper type trait.
Header file for the YieldsUpper type trait.
Header file for the YieldsZero type trait.
Constraint on the data type.
#define BLAZE_CONSTRAINT_MUST_BE_SIMD_PACK(T)
Constraint on the data type.
Definition: SIMDPack.h:60
BLAZE_ALWAYS_INLINE decltype(auto) qdrt(const T &a)
Computing the quad root (4th root) of the given value/object.
Definition: Qdrt.h:65
#define BLAZE_ALWAYS_INLINE
Platform dependent setup of an enforced inline keyword.
Definition: Inline.h:85
#define BLAZE_DEVICE_CALLABLE
Conditional macro that sets host and device attributes when compiled with CUDA.
Definition: HostDevice.h:94
Header file for the qdrt shim.
Generic wrapper for the qdrt() function.
Definition: Qdrt.h:84
BLAZE_ALWAYS_INLINE decltype(auto) load(const T &a) const
Returns the result of the qdrt() function for the given SIMD vector.
Definition: Qdrt.h:122
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Qdrt.h:112
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data type T.
Definition: Qdrt.h:104
System settings for the inline keywords.
Header file for the IsZero type trait.