35#ifndef _BLAZE_MATH_FUNCTORS_TAN_H_
36#define _BLAZE_MATH_FUNCTORS_TAN_H_
88 template<
typename T >
91 return tan( std::forward<T>( a ) );
100 template<
typename T >
118 template<
typename T >
139template<
typename T >
140struct YieldsUniform<Tan,T>
141 :
public IsUniform<T>
157template<
typename MT >
158struct YieldsSymmetric<Tan,MT>
159 :
public IsSymmetric<MT>
175template<
typename MT >
176struct YieldsHermitian<Tan,MT>
177 :
public IsHermitian<MT>
193template<
typename MT >
194struct YieldsLower<Tan,MT>
211template<
typename MT >
212struct YieldsStrictlyLower<Tan,MT>
213 :
public IsStrictlyLower<MT>
229template<
typename MT >
230struct YieldsUpper<Tan,MT>
247template<
typename MT >
248struct YieldsStrictlyUpper<Tan,MT>
249 :
public IsStrictlyUpper<MT>
265template<
typename T >
266struct YieldsZero<Tan,T>
Header file for the HasSIMDTan 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 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 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 tan(const SIMDf64< T > &a) noexcept=delete
Tangent 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
Header file for the tan shim.
Header file for the SIMD tangent functionality.
Generic wrapper for the tan() function.
Definition: Tan.h:81
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Tan.h:109
BLAZE_ALWAYS_INLINE decltype(auto) load(const T &a) const
Returns the result of the tan() function for the given SIMD vector.
Definition: Tan.h:119
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data type T.
Definition: Tan.h:101
System settings for the inline keywords.
Header file for the IsZero type trait.