IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IfElseReg.h
Go to the documentation of this file.
1 // IfElseReg.h:
3 // -------------------
4 //
13 
14 #ifndef __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_IFELSEREG_H__
15 #define __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_IFELSEREG_H__
16 
22 
23 #include <boost/type_traits/is_integral.hpp>
24 
25 namespace ipsdk {
26 namespace simd {
27 namespace detail {
28 
31 
32 template <eInstructionSet::domain IS, typename T, typename Enable=void>
33 struct IfElseReg
34 {
35 };
36 
37 } // end of namespace detail
38 } // end of namespace simd
39 } // end of namespace ipsdk
40 
42 
43 #ifdef IPSDK_WITH_SSE2
45 #endif
46 
47 #ifdef IPSDK_WITH_AVX
49 #endif
50 
51 #ifdef IPSDK_WITH_AVX2
53 #endif
54 
55 #ifdef IPSDK_WITH_AVX512
57 #endif
58 
61 
62 #endif // __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_IFELSEREG_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
RegType class.
Definition of import/export macro for library.
Definition: IfElseReg.h:33