35#ifndef _BLAZE_MATH_FUNCTORS_ABS_H_
36#define _BLAZE_MATH_FUNCTORS_ABS_H_
92 template<
typename T >
95 return abs( std::forward<T>( a ) );
104 template<
typename T >
122 template<
typename T >
143template<
typename T >
144struct YieldsUniform<Abs,T>
145 :
public IsUniform<T>
161template<
typename MT >
162struct YieldsSymmetric<Abs,MT>
163 :
public BoolConstant< IsSymmetric_v<MT> || IsHermitian_v<MT> >
179template<
typename MT >
180struct YieldsLower<Abs,MT>
197template<
typename MT >
198struct YieldsUniLower<Abs,MT>
199 :
public IsUniLower<MT>
215template<
typename MT >
216struct YieldsStrictlyLower<Abs,MT>
217 :
public IsStrictlyLower<MT>
233template<
typename MT >
234struct YieldsUpper<Abs,MT>
251template<
typename MT >
252struct YieldsUniUpper<Abs,MT>
253 :
public IsUniUpper<MT>
269template<
typename MT >
270struct YieldsStrictlyUpper<Abs,MT>
271 :
public IsStrictlyUpper<MT>
287template<
typename T >
288struct YieldsZero<Abs,T>
Header file for the HasSIMDAbs type trait.
Macro for CUDA compatibility.
Header file for the IntegralConstant class template.
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 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 const SIMDdouble abs(const SIMDf64< T > &a) noexcept=delete
Absolute of a vector of double precision floating point values.
#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
IntegralConstant< bool, B > BoolConstant
Generic wrapper for a compile time constant boolean value.
Definition: IntegralConstant.h:110
Header file for the abs shim.
Header file for the SIMD abs functionality.
Generic wrapper for the abs() function.
Definition: Abs.h:85
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data type T.
Definition: Abs.h:105
BLAZE_ALWAYS_INLINE decltype(auto) load(const T &a) const
Returns the result of the abs() function for the given SIMD vector.
Definition: Abs.h:123
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Abs.h:113
System settings for the inline keywords.
Header file for the IsZero type trait.