35 #ifndef _BLAZE_MATH_FUNCTORS_DIV_H_ 36 #define _BLAZE_MATH_FUNCTORS_DIV_H_ 88 template<
typename T1,
typename T2 >
100 template<
typename T1,
typename T2 >
101 static constexpr
bool simdEnabled() {
return HasSIMDDiv_v<T1,T2>; }
119 template<
typename T1,
typename T2 >
141 template<
typename T1,
typename T2 >
142 struct YieldsUniform<Div,T1,T2>
143 :
public BoolConstant< IsUniform_v<T1> && IsUniform_v<T2> >
159 template<
typename MT1,
typename MT2 >
160 struct YieldsSymmetric<Div,MT1,MT2>
161 :
public BoolConstant< IsSymmetric_v<MT1> && IsSymmetric_v<MT2> >
177 template<
typename MT1,
typename MT2 >
178 struct YieldsHermitian<Div,MT1,MT2>
179 :
public BoolConstant< IsHermitian_v<MT1> && IsHermitian_v<MT2> >
195 template<
typename MT1,
typename MT2 >
196 struct YieldsLower<Div,MT1,MT2>
213 template<
typename MT1,
typename MT2 >
214 struct YieldsStrictlyLower<Div,MT1,MT2>
231 template<
typename MT1,
typename MT2 >
232 struct YieldsUpper<Div,MT1,MT2>
249 template<
typename MT1,
typename MT2 >
250 struct YieldsStrictlyUpper<Div,MT1,MT2>
267 template<
typename T1,
typename T2 >
268 struct YieldsZero<Div,T1,T2>
Generic wrapper for the division operator.
Definition: Div.h:79
Header file for the YieldsStrictlyLower type trait.
Header file for the YieldsZero type trait.
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Div.h:109
decltype(auto) BLAZE_ALWAYS_INLINE load(const T1 &a, const T2 &b) const
Returns the result of the division operation for the given SIMD vectors.
Definition: Div.h:120
Header file for the SIMD division functionality.
#define BLAZE_CONSTRAINT_MUST_BE_SIMD_PACK(T)
Constraint on the data type.In case the given data type T is not a SIMD pack, a compilation error is ...
Definition: SIMDPack.h:60
Header file for the IsStrictlyUpper type trait.
Header file for the IsSymmetric type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
#define BLAZE_ALWAYS_INLINE
Platform dependent setup of an enforced inline keyword.
Definition: Inline.h:85
Header file for the YieldsStrictlyUpper type trait.
Header file for the IsLower type trait.
Constraint on the data type.
Header file for the IsStrictlyLower type trait.
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data types T1 and T2.
Definition: Div.h:101
Header file for the YieldsSymmetric type trait.
Header file for the YieldsUpper type trait.
Header file for the IsZero type trait.
Header file for the YieldsLower type trait.
IntegralConstant< bool, B > BoolConstant
Generic wrapper for a compile time constant boolean value.The BoolConstant alias template represents ...
Definition: IntegralConstant.h:110
Macro for CUDA compatibility.
Header file for the HasSIMDDiv type trait.
Header file for the IntegralConstant class template.
#define BLAZE_DEVICE_CALLABLE
Conditional macro that sets host and device attributes when compiled with CUDA.
Definition: HostDevice.h:94
Header file for the IsUpper type trait.
Header file for the YieldsHermitian type trait.
Header file for the IsHermitian type trait.
System settings for the inline keywords.