15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_AVX2_MAXPACK_H__ 16 #define __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_AVX2_MAXPACK_H__ 34 typename boost::enable_if_c<boost::is_integral<T>::value
35 && sizeof(T) == 1>::type>
37 static IPSDK_FORCEINLINE
49 typename boost::enable_if_c<boost::is_integral<T>::value
50 && sizeof(T) == 2>::type>
52 static IPSDK_FORCEINLINE
58 in._val[0], in._val[1]);
67 typename boost::enable_if_c<boost::is_integral<T>::value
68 && sizeof(T) == 4>::type>
70 static IPSDK_FORCEINLINE
76 in._val[0], in._val[1]);
91 typename boost::enable_if_c<boost::is_integral<T>::value
92 && sizeof(T) == 8>::type>
94 static IPSDK_FORCEINLINE
100 res = MaxR::act(res, in._val[2]);
101 res = MaxR::act(res, in._val[3]);
102 res = MaxR::act(res, in._val[4]);
103 res = MaxR::act(res, in._val[5]);
104 res = MaxR::act(res, in._val[6]);
105 res = MaxR::act(res, in._val[7]);
116 static IPSDK_FORCEINLINE
129 static IPSDK_FORCEINLINE
145 #endif // __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_AVX2_MAXREGIMPL_H__ Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
cast function; casts a Pack<instructionSet, TIn> to a Pack<instructionSet, TOut>
double ipReal64
Base types definition.
Definition: BaseTypes.h:57
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
structure MaxPack<eInstructionSet::domain instructionSet, typename T, typename Enable=void> ...
Definition: MaxPack.h:40
Advanced Vector Extensions 2.
Definition: InstructionSetTypes.h:48
Definition: MaxRegDecl.h:29
Definition of import/export macro for library.
structure used to retrieve AVX type associated to a base type
Definition: AvxTypes.h:33
Definition: BasePack.h:37
float ipReal32
Base types definition.
Definition: BaseTypes.h:56
structure containing intrinsic registers used to store vectorized data
Definition: BasePackDecl.h:29