35#ifndef _BLAZE_MATH_FUNCTORS_EXP10_H_
36#define _BLAZE_MATH_FUNCTORS_EXP10_H_
76 template<
typename T >
79 return exp10( std::forward<T>( a ) );
88 template<
typename T >
89 static constexpr bool simdEnabled() {
return HasSIMDExp10_v<T>; }
106 template<
typename T >
127template<
typename T >
128struct YieldsUniform<Exp10,T>
129 :
public IsUniform<T>
145template<
typename MT >
146struct YieldsSymmetric<Exp10,MT>
147 :
public IsSymmetric<MT>
Header file for the HasSIMDExp10 type trait.
Macro for CUDA compatibility.
Header file for the IsSymmetric type trait.
Header file for the YieldsSymmetric 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 exp10(const SIMDf64< T > &a) noexcept=delete
Computes for 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
Header file for the exp10 shim.
Header file for the SIMD exp10 functionality.
Generic wrapper for the exp10() function.
Definition: Exp10.h:69
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Exp10.h:97
BLAZE_ALWAYS_INLINE decltype(auto) load(const T &a) const
Returns the result of the exp10() function for the given SIMD vector.
Definition: Exp10.h:107
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data type T.
Definition: Exp10.h:89
System settings for the inline keywords.