IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BasePack.h
Go to the documentation of this file.
1 // BasePack.h:
3 // ----------------
4 //
14 
15 #ifndef __IPSDKUTIL_DETAIL_STD_BASEPACK_H__
16 #define __IPSDKUTIL_DETAIL_STD_BASEPACK_H__
17 
22 
23 namespace ipsdk {
24 namespace simd {
25 
28 
29 template <typename T>
31 {
32  static const ipsdk::simd::ePackType::domain _regType = ipsdk::simd::ePackType::ePT_Scalar;
33  typedef T DataType;
34 
35  T _val;
36 
37  BasePack() {}
38  BasePack(const T& t) : _val(t) {}
39 
40  template<typename TOut> IPSDK_FORCEINLINE
42 };
43 
46 
47 } // end of namespace simd
48 } // end of namespace ipsdk
49 
50 #endif // __IPSDKUTIL_DETAIL_STD_BASEPACK_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Vector DataType
data type used for estimation
Definition: EstimationTypes.h:58
Definition of import/export macro for library.
packs of scalars
Definition: PackTypes.h:39
simd::Pack types
structure containing intrinsic registers used to store vectorized data
Definition: BasePackDecl.h:29