IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
load.h
Go to the documentation of this file.
1 // load.h:
3 // ------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_LOAD_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_LOAD_H__
17 
24 
25 namespace ipsdk {
26 namespace simd {
27 
30 
34 template <eInstructionSet::domain instructionSet, typename T>
35 IPSDK_FORCEINLINE
37 load(const T* pT)
38 {
40 }
41 
42 template <eInstructionSet::domain instructionSet, class PackT>
43 IPSDK_FORCEINLINE
44 void
45 load(PackT& pack,
46  const typename PackT::DataType* pT)
47 {
48  typedef typename PackT::DataType T;
49  detail::LoadPack<instructionSet, T>::act(pack, pT);
50 }
51 
54 
55 } // end of namespace simd
56 } // end of namespace ipsdk
57 
58 #endif // __IPSDKUTIL_INSTRUCTIONSET_LOAD_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Definition: LoadPack.h:31
IPSDK_FORCEINLINE ipsdk::simd::IS2Pack< instructionSet, T >::Type load(const T *pT)
load function; loads a simd pack from a buffer in memory
Definition: load.h:37
BasePack class; defines a set of scalars (for instruction set "standard") or registers (for all other...
Vector DataType
data type used for estimation
Definition: EstimationTypes.h:58
Definition of import/export macro for library.
simd::Pack types
Definition: IS2Pack.h:34