IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
LoadRegDecl.h
Go to the documentation of this file.
1 // LoadReg.h:
3 // ------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_DETAIL_AVX_LOADREGDECL_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_DETAIL_AVX_LOADREGDECL_H__
17 
24 
25 namespace ipsdk {
26 namespace simd {
27 namespace detail {
28 
31 
32 // load implementation for AVX for ipReal32
33 template<>
34 struct LoadReg<eInstructionSet::eIS_Avx, ipReal32>
35 {
36  static IPSDK_FORCEINLINE
37  AvxType<ipReal32>::Type act(const ipReal32* pT);
38 
39  static IPSDK_FORCEINLINE
40  void
41  act(AvxType<ipReal32>::Type& reg, const ipReal32* pT);
42 };
43 
44 // load implementation for AVX for ipReal64
45 template<>
46 struct LoadReg<eInstructionSet::eIS_Avx, ipReal64>
47 {
48  static IPSDK_FORCEINLINE
49  AvxType<ipReal64>::Type act(const ipReal64* pT);
50 
51  static IPSDK_FORCEINLINE
52  void act(AvxType<ipReal64>::Type& reg, const ipReal64* pT);
53 };
54 
57 
58 } // end of namespace detail
59 } // end of namespace simd
60 } // end of namespace ipsdk
61 
62 #endif // __IPSDKUTIL_INSTRUCTIONSET_DETAIL_AVX_LOADREGDECL_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
double ipReal64
Base types definition.
Definition: BaseTypes.h:57
BasePack class; defines a set of scalars (for instruction set "standard") or registers (for all other...
Predefined types for Avx instruction set management.
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Advanced Vector Extensions.
Definition: InstructionSetTypes.h:44
Predefined types associated to instruction set management.
Definition of import/export macro for library.
float ipReal32
Base types definition.
Definition: BaseTypes.h:56