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_AVX512_BASEPACK_H__
16 #define __IPSDKUTIL_DETAIL_AVX512_BASEPACK_H__
17 
22 
23 namespace ipsdk {
24 namespace simd {
25 
28 
29 template <typename T>
30 struct Avx512Step
31 {
34 };
35 
36 template <typename T>
38 {
39  static const ipsdk::simd::ePackType::domain _regType = ipsdk::simd::ePackType::ePT_Avx512;
40  typedef T DataType;
41 
42  typename Avx512Type<T>::Type _val[
44 
45  template<typename TOther> IPSDK_FORCEINLINE
47 };
48 
51 
52 } // end of namespace simd
53 } // end of namespace ipsdk
54 
55 #endif // __IPSDKUTIL_DETAIL_AVX512_BASEPACK_H__
Definition: BasePack.h:30
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
packs of avx512 registers (ex.: Packs of __m512)
Definition: PackTypes.h:45
int32_t ipInt32
Base types definition.
Definition: BaseTypes.h:52
Predefined types for Avx512 instruction set management.
ePackType
Enumerate describing a pack type.
Definition: PackTypes.h:35
structure, whose attribute value defines the number of registers contained in pack for current instru...
Definition: NbRegsPerOp.h:29
Predefined types associated to instruction set management.
Vector DataType
data type used for estimation
Definition: EstimationTypes.h:58
Definition of import/export macro for library.
structure giving the number of elements processed per instruction for the current pack type ...
Definition: NbEltsPerPack.h:34
structure used to retrieve AVX512 type associated to a base type
Definition: Avx512Types.h:36
structure containing intrinsic registers used to store vectorized data
Definition: BasePackDecl.h:29