35 #ifndef _BLAZE_MATH_INTRINSICS_ABS_H_
36 #define _BLAZE_MATH_INTRINSICS_ABS_H_
67 return _mm256_abs_epi8( a.value );
69 #elif BLAZE_SSSE3_MODE
72 return _mm_abs_epi8( a.value );
89 return _mm256_abs_epi16( a.value );
91 #elif BLAZE_SSSE3_MODE
94 return _mm_abs_epi16( a.value );
111 return _mm256_abs_epi32( a.value );
113 #elif BLAZE_SSSE3_MODE
116 return _mm_abs_epi32( a.value );
const DMatAbsExpr< MT, SO > abs(const DenseMatrix< MT, SO > &dm)
Returns a matrix containing the absolute values of each single element of dm.
Definition: DMatAbsExpr.h:909
#define BLAZE_ALWAYS_INLINE
Platform dependent setup of an enforced inline keyword.
Definition: Inline.h:85
Header file for the basic intrinsic types.
System settings for the SSE mode.
System settings for the inline keywords.