15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_SSE2_MINPACK_H__ 16 #define __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_SSE2_MINPACK_H__ 37 typename boost::enable_if_c<sizeof(T) == 1>::type>
39 static IPSDK_FORCEINLINE
51 typename boost::enable_if_c<sizeof(T) == 2>::type>
53 static IPSDK_FORCEINLINE
59 in._val[0], in._val[1]);
68 typename boost::enable_if_c<sizeof(T) == 4>::type>
70 static IPSDK_FORCEINLINE
76 res = MinR::act(res, in._val[2]);
77 res = MinR::act(res, in._val[3]);
87 typename boost::enable_if_c<sizeof(T) == 8>::type>
89 static IPSDK_FORCEINLINE
95 res = MinR::act(res, in._val[2]);
96 res = MinR::act(res, in._val[3]);
97 res = MinR::act(res, in._val[4]);
98 res = MinR::act(res, in._val[5]);
99 res = MinR::act(res, in._val[6]);
100 res = MinR::act(res, in._val[7]);
114 #endif // __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_SSE2_MINPACK_H__ Definition: BasePack.h:37
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Definition: MinRegDecl.h:29
template structure, specialized to implement the computation of the minimum of the elements loaded in...
cast function; casts a Pack<instructionSet, TIn> to a Pack<instructionSet, TOut>
template structure which is specialized to implement the minimum computation on 2 scalars or 2 regist...
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
structure MinPack<eInstructionSet::domain instructionSet, typename T, typename Enable=void> ...
Definition: MinPack.h:41
Definition of import/export macro for library.
unload function; unloads a pack into a memory buffer
Streaming SIMD Extensions 2.
Definition: InstructionSetTypes.h:36
structure used to retrieve SSE2 type associated to a base type
Definition: Sse2Types.h:32