Blaze 3.9
Log10.h
Go to the documentation of this file.
1//=================================================================================================
33//=================================================================================================
34
35#ifndef _BLAZE_MATH_FUNCTORS_LOG10_H_
36#define _BLAZE_MATH_FUNCTORS_LOG10_H_
37
38
39//*************************************************************************************************
40// Includes
41//*************************************************************************************************
42
43#include <utility>
55#include <blaze/system/Inline.h>
56
57
58namespace blaze {
59
60//=================================================================================================
61//
62// CLASS DEFINITION
63//
64//=================================================================================================
65
66//*************************************************************************************************
70struct Log10
71{
72 //**********************************************************************************************
78 template< typename T >
79 BLAZE_ALWAYS_INLINE BLAZE_DEVICE_CALLABLE decltype(auto) operator()( T&& a ) const
80 {
81 return log10( std::forward<T>( a ) );
82 }
83 //**********************************************************************************************
84
85 //**********************************************************************************************
90 template< typename T >
91 static constexpr bool simdEnabled() { return HasSIMDLog10_v<T>; }
92 //**********************************************************************************************
93
94 //**********************************************************************************************
99 static constexpr bool paddingEnabled() { return false; }
100 //**********************************************************************************************
101
102 //**********************************************************************************************
108 template< typename T >
109 BLAZE_ALWAYS_INLINE decltype(auto) load( const T& a ) const
110 {
112 return log10( a );
113 }
114 //**********************************************************************************************
115};
116//*************************************************************************************************
117
118
119
120
121//=================================================================================================
122//
123// YIELDSUNIFORM SPECIALIZATIONS
124//
125//=================================================================================================
126
127//*************************************************************************************************
129template< typename T >
130struct YieldsUniform<Log10,T>
131 : public IsUniform<T>
132{};
134//*************************************************************************************************
135
136
137
138
139//=================================================================================================
140//
141// YIELDSSYMMETRIC SPECIALIZATIONS
142//
143//=================================================================================================
144
145//*************************************************************************************************
147template< typename MT >
148struct YieldsSymmetric<Log10,MT>
149 : public IsSymmetric<MT>
150{};
152//*************************************************************************************************
153
154
155
156
157//=================================================================================================
158//
159// YIELDSHERMITIAN SPECIALIZATIONS
160//
161//=================================================================================================
162
163//*************************************************************************************************
165template< typename MT >
166struct YieldsHermitian<Log10,MT>
167 : public IsHermitian<MT>
168{};
170//*************************************************************************************************
171
172} // namespace blaze
173
174#endif
Header file for the HasSIMDLog10 type trait.
Macro for CUDA compatibility.
Header file for the IsHermitian type trait.
Header file for the IsSymmetric type trait.
Header file for the IsUniform type trait.
Header file for the YieldsHermitian type trait.
Header file for the YieldsSymmetric type trait.
Header file for the YieldsUniform 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 log10(const SIMDf64< T > &a) noexcept=delete
Computes the common logarithm 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 log10 shim.
Header file for the SIMD common (base-10) logarithm functionality.
Generic wrapper for the log10() function.
Definition: Log10.h:71
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data type T.
Definition: Log10.h:91
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Log10.h:99
BLAZE_ALWAYS_INLINE decltype(auto) load(const T &a) const
Returns the result of the log10() function for the given SIMD vector.
Definition: Log10.h:109
System settings for the inline keywords.