35#ifndef _BLAZE_UTIL_TYPETRAITS_ISVECTORIZABLE_H_
36#define _BLAZE_UTIL_TYPETRAITS_ISVECTORIZABLE_H_
64struct IsVectorizableHelper
68 static constexpr bool value = (
sizeof(T) <= 8UL ) &&
73 && IsNumeric_v<T> &&
sizeof(T) >= 4UL ) );
86struct IsVectorizableHelper<
complex<T> >
90 static constexpr bool value = IsVectorizableHelper< RemoveCV_t<T> >::value;
103struct IsVectorizableHelper<void>
107 static constexpr bool value =
false;
136template<
typename T >
138 :
public BoolConstant< IsVectorizableHelper< RemoveCV_t<T> >::value >
156template<
typename T >
Header file for the complex data type.
Header file for the IsFloat type trait.
Header file for the IsNumeric type trait.
Header file for the RemoveCV type trait.
Complex data type of the Blaze library.
#define BLAZE_AVX512F_MODE
Compilation switch for the AVX512F mode.
Definition: Vectorization.h:246
#define BLAZE_AVX512BW_MODE
Compilation switch for the AVX512BW mode.
Definition: Vectorization.h:264
#define BLAZE_MIC_MODE
Compilation switch for the MIC mode.
Definition: Vectorization.h:299
#define BLAZE_SSE_MODE
Compilation switch for the SSE mode.
Definition: Vectorization.h:126
#define BLAZE_SSE2_MODE
Compilation switch for the SSE2 mode.
Definition: Vectorization.h:143
constexpr bool IsVectorizable_v
Auxiliary variable template for the IsVectorizable type trait.
Definition: IsVectorizable.h:157
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for vectorizable types.
Definition: IsVectorizable.h:139
System settings for the SSE mode.