IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
LoadPack.h
Go to the documentation of this file.
1 // LoadPack.h:
3 // ------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_DETAIL_STD_LOADPACK_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_DETAIL_STD_LOADPACK_H__
17 
21 
22 namespace ipsdk {
23 namespace simd {
24 namespace detail {
25 
28 
29 // load implementation for Std for integral types
30 template<typename T>
32 {
33  static IPSDK_FORCEINLINE
34  BasePack<ePackType::ePT_Scalar, T> act(const T* pT)
35  {
37  }
38 
39  static IPSDK_FORCEINLINE
40  void act(BasePack<ePackType::ePT_Scalar, T>& pack, const T* pT)
41  {
43  }
44 };
45 
48 
49 } // end of namespace detail
50 } // end of namespace simd
51 } // end of namespace ipsdk
52 
53 #endif // __IPSDKUTIL_INSTRUCTIONSET_DETAIL_STD_LOADPACK_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Definition: LoadPack.h:31
BasePack class; defines a set of scalars (for instruction set "standard") or registers (for all other...
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Definition of import/export macro for library.
compiler optimisations only
Definition: InstructionSetTypes.h:34