IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
GatherReg.h
Go to the documentation of this file.
1 // GatherReg.h:
3 // ------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_GATHER_DETAIL_GATHERREG_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_GATHER_DETAIL_GATHERREG_H__
17 
19 
20 namespace ipsdk {
21 namespace simd {
22 namespace detail {
23 
26 
27 // template structure associated to assign function
28 template <eInstructionSet::domain instructionSet, typename T,
29  typename Enable=void>
30 struct GatherReg {
31 };
32 
35 
36 } // end of namespace detail
37 } // end of namespace simd
38 } // end of namespace ipsdk
39 
40 #include <IPSDKUtil/InstructionSet/Gather/detail/Std/GatherRegDecl.h>
41 
42 #ifdef IPSDK_WITH_SSE2
43 #include <IPSDKUtil/InstructionSet/Gather/detail/SSE2/GatherRegDecl.h>
44 #endif
45 
46 #ifdef IPSDK_WITH_AVX
47 #include <IPSDKUtil/InstructionSet/Gather/detail/AVX/GatherRegDecl.h>
48 #endif
49 
50 #ifdef IPSDK_WITH_AVX2
51 #include <IPSDKUtil/InstructionSet/Gather/detail/AVX2/GatherRegDecl.h>
52 #endif
53 
54 #ifdef IPSDK_WITH_AVX512
55 #include <IPSDKUtil/InstructionSet/Gather/detail/AVX512/GatherRegDecl.h>
56 #endif
57 
58 #include <IPSDKUtil/InstructionSet/Gather/detail/Std/GatherRegImpl.h>
59 
60 #ifdef IPSDK_WITH_SSE2
61 #include <IPSDKUtil/InstructionSet/Gather/detail/SSE2/GatherRegImpl.h>
62 #endif
63 
64 #ifdef IPSDK_WITH_AVX
65 #include <IPSDKUtil/InstructionSet/Gather/detail/AVX/GatherRegImpl.h>
66 #endif
67 
68 #ifdef IPSDK_WITH_AVX2
69 #include <IPSDKUtil/InstructionSet/Gather/detail/AVX2/GatherRegImpl.h>
70 #endif
71 
72 #ifdef IPSDK_WITH_AVX512
73 #include <IPSDKUtil/InstructionSet/Gather/detail/AVX512/GatherRegImpl.h>
74 #endif
75 
76 #endif // __IPSDKUTIL_INSTRUCTIONSET_GATHER_DETAIL_GATHERREG_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Definition of import/export macro for library.
Definition: GatherReg.h:30