Blaze  3.6
Abs.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_FUNCTORS_ABS_H_
36 #define _BLAZE_MATH_FUNCTORS_ABS_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
44 #include <blaze/math/shims/Abs.h>
45 #include <blaze/math/simd/Abs.h>
67 #include <blaze/system/Inline.h>
69 
70 
71 namespace blaze {
72 
73 //=================================================================================================
74 //
75 // CLASS DEFINITION
76 //
77 //=================================================================================================
78 
79 //*************************************************************************************************
83 struct Abs
84 {
85  //**********************************************************************************************
91  template< typename T >
92  BLAZE_ALWAYS_INLINE BLAZE_DEVICE_CALLABLE decltype(auto) operator()( const T& a ) const
93  {
94  return abs( a );
95  }
96  //**********************************************************************************************
97 
98  //**********************************************************************************************
103  template< typename T >
104  static constexpr bool simdEnabled() { return HasSIMDAbs_v<T>; }
105  //**********************************************************************************************
106 
107  //**********************************************************************************************
112  static constexpr bool paddingEnabled() { return true; }
113  //**********************************************************************************************
114 
115  //**********************************************************************************************
121  template< typename T >
122  BLAZE_ALWAYS_INLINE decltype(auto) load( const T& a ) const
123  {
125  return abs( a );
126  }
127  //**********************************************************************************************
128 };
129 //*************************************************************************************************
130 
131 
132 
133 
134 //=================================================================================================
135 //
136 // YIELDSUNIFORM SPECIALIZATIONS
137 //
138 //=================================================================================================
139 
140 //*************************************************************************************************
142 template< typename T >
143 struct YieldsUniform<Abs,T>
144  : public IsUniform<T>
145 {};
147 //*************************************************************************************************
148 
149 
150 
151 
152 //=================================================================================================
153 //
154 // YIELDSSYMMETRIC SPECIALIZATIONS
155 //
156 //=================================================================================================
157 
158 //*************************************************************************************************
160 template< typename MT >
161 struct YieldsSymmetric<Abs,MT>
162  : public BoolConstant< IsSymmetric_v<MT> || IsHermitian_v<MT> >
163 {};
165 //*************************************************************************************************
166 
167 
168 
169 
170 //=================================================================================================
171 //
172 // YIELDSLOWER SPECIALIZATIONS
173 //
174 //=================================================================================================
175 
176 //*************************************************************************************************
178 template< typename MT >
179 struct YieldsLower<Abs,MT>
180  : public IsLower<MT>
181 {};
183 //*************************************************************************************************
184 
185 
186 
187 
188 //=================================================================================================
189 //
190 // YIELDSUNILOWER SPECIALIZATIONS
191 //
192 //=================================================================================================
193 
194 //*************************************************************************************************
196 template< typename MT >
197 struct YieldsUniLower<Abs,MT>
198  : public IsUniLower<MT>
199 {};
201 //*************************************************************************************************
202 
203 
204 
205 
206 //=================================================================================================
207 //
208 // YIELDSSTRICTLYLOWER SPECIALIZATIONS
209 //
210 //=================================================================================================
211 
212 //*************************************************************************************************
214 template< typename MT >
215 struct YieldsStrictlyLower<Abs,MT>
216  : public IsStrictlyLower<MT>
217 {};
219 //*************************************************************************************************
220 
221 
222 
223 
224 //=================================================================================================
225 //
226 // YIELDSUPPER SPECIALIZATIONS
227 //
228 //=================================================================================================
229 
230 //*************************************************************************************************
232 template< typename MT >
233 struct YieldsUpper<Abs,MT>
234  : public IsUpper<MT>
235 {};
237 //*************************************************************************************************
238 
239 
240 
241 
242 //=================================================================================================
243 //
244 // YIELDSUNIUPPER SPECIALIZATIONS
245 //
246 //=================================================================================================
247 
248 //*************************************************************************************************
250 template< typename MT >
251 struct YieldsUniUpper<Abs,MT>
252  : public IsUniUpper<MT>
253 {};
255 //*************************************************************************************************
256 
257 
258 
259 
260 //=================================================================================================
261 //
262 // YIELDSSTRICTLYUPPER SPECIALIZATIONS
263 //
264 //=================================================================================================
265 
266 //*************************************************************************************************
268 template< typename MT >
269 struct YieldsStrictlyUpper<Abs,MT>
270  : public IsStrictlyUpper<MT>
271 {};
273 //*************************************************************************************************
274 
275 
276 
277 
278 //=================================================================================================
279 //
280 // YIELDSZERO SPECIALIZATIONS
281 //
282 //=================================================================================================
283 
284 //*************************************************************************************************
286 template< typename T >
287 struct YieldsZero<Abs,T>
288  : public IsZero<T>
289 {};
291 //*************************************************************************************************
292 
293 } // namespace blaze
294 
295 #endif
Header file for the IsUniUpper type trait.
Header file for the YieldsStrictlyLower type trait.
Header file for the YieldsZero type trait.
Header file for the abs shim.
Header file for the IsUniLower type trait.
#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
Generic wrapper for the abs() function.
Definition: Abs.h:83
Header file for the IsUniform type trait.
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
static constexpr bool paddingEnabled()
Returns whether the operation supports padding, i.e. whether it can deal with zeros.
Definition: Abs.h:112
Header file for the YieldsStrictlyUpper type trait.
Header file for the YieldsUniLower type trait.
Header file for the IsLower type trait.
Header file for the HasSIMDAbs type trait.
Constraint on the data type.
static constexpr bool simdEnabled()
Returns whether SIMD is enabled for the specified data type T.
Definition: Abs.h:104
Header file for the IsStrictlyLower type trait.
decltype(auto) abs(const DenseMatrix< MT, SO > &dm)
Applies the abs() function to each single element of the dense matrix dm.
Definition: DMatMapExpr.h:1156
Header file for the YieldsUniform type trait.
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
Header file for the SIMD abs functionality.
decltype(auto) BLAZE_ALWAYS_INLINE load(const T &a) const
Returns the result of the abs() function for the given SIMD vector.
Definition: Abs.h:122
Macro for CUDA compatibility.
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 YieldsUniUpper type trait.
Header file for the IsHermitian type trait.
System settings for the inline keywords.