35 #ifndef _BLAZE_MATH_INTRINSICS_DIVISION_H_
36 #define _BLAZE_MATH_INTRINSICS_DIVISION_H_
68 return _mm512_div_epi32( a.value, b.value );
86 return _mm512_div_epi64( a.value, b.value );
104 return _mm512_div_ps( a.value, b.value );
109 return _mm256_div_ps( a.value, b.value );
114 return _mm_div_ps( a.value, b.value );
132 return _mm512_div_pd( a.value, b.value );
137 return _mm256_div_pd( a.value, b.value );
139 #elif BLAZE_SSE2_MODE
142 return _mm_div_pd( a.value, b.value );
const EnableIf< IsNumeric< T2 >, typename DivExprTrait< T1, T2 >::Type >::Type operator/(const DenseMatrix< T1, SO > &mat, T2 scalar)
Division operator for the division of a dense matrix by a scalar value ( ).
Definition: DMatScalarDivExpr.h:939
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
#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.