35#ifndef _BLAZE_MATH_TYPETRAITS_HASSIMDCONJ_H_
36#define _BLAZE_MATH_TYPETRAITS_HASSIMDCONJ_H_
67struct HasSIMDConjHelper
77struct HasSIMDConjHelper<
complex<T> >
78 :
public BoolConstant< IsNumeric_v<T> && IsSigned_v<T> &&
79 ( ( !bool( BLAZE_AVX512F_MODE ) && HasSIMDMult_v<T,T> && ( IsFloatingPoint_v<T> || sizeof(T) <= 4UL ) ) ||
80 ( bool( BLAZE_AVX512F_MODE ) && IsFloatingPoint_v<T> ) ||
81 ( bool( BLAZE_AVX512BW_MODE ) && sizeof(T) == 2UL ) ||
82 ( bool( BLAZE_AVX512F_MODE ) && sizeof(T) >= 4UL ) ) >
109template<
typename T >
111 :
public BoolConstant< HasSIMDConjHelper< RemoveCVRef_t<T> >::value >
129template<
typename T >
Header file for the complex data type.
Header file for the HasSIMDMult type trait.
Header file for the IntegralConstant class template.
Header file for the IsFloatingPoint type trait.
Header file for the IsNumeric type trait.
Header file for the IsSigned type trait.
Header file for the RemoveCVRef type trait.
Complex data type of the Blaze library.
constexpr bool HasSIMDConj_v
Auxiliary variable template for the HasSIMDConj type trait.
Definition: HasSIMDConj.h:130
IntegralConstant< bool, B > BoolConstant
Generic wrapper for a compile time constant boolean value.
Definition: IntegralConstant.h:110
Availability of a SIMD conjugate operation for the given data type.
Definition: HasSIMDConj.h:112
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74