IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IsGreaterEqualRegDecl.h
Go to the documentation of this file.
1 // IsGreaterEqualRegDecl.h:
3 // -------------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_COMPARISON_DETAIL_AVX2_ISGREATEREQUALREGDECL_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_COMPARISON_DETAIL_AVX2_ISGREATEREQUALREGDECL_H__
17 
22 
23 namespace ipsdk {
24 namespace simd {
25 namespace detail {
26 
29 
30 template <typename T>
33  T,
34  typename boost::enable_if_c<
35  boost::is_integral<T>::value
36  >::type
37 >
38 {
39  static IPSDK_FORCEINLINE
41  act(const typename AvxType<T>::Type& in1,
42  const typename AvxType<T>::Type& in2);
43 
44  static IPSDK_FORCEINLINE
45  void
46  act(const typename AvxType<T>::Type& in1,
47  const typename AvxType<T>::Type& in2,
49 };
50 
51 template <>
53 {
54  static IPSDK_FORCEINLINE
56  act(const AvxType<ipReal32>::Type& in1,
57  const AvxType<ipReal32>::Type& in2);
58 
59  static IPSDK_FORCEINLINE
60  void
61  act(const AvxType<ipReal32>::Type& in1,
62  const AvxType<ipReal32>::Type& in2,
64 };
65 
66 template <>
68 {
69  static IPSDK_FORCEINLINE
71  act(const AvxType<ipReal64>::Type& in1,
72  const AvxType<ipReal64>::Type& in2);
73 
74  static IPSDK_FORCEINLINE
75  void
76  act(const AvxType<ipReal64>::Type& in1,
77  const AvxType<ipReal64>::Type& in2,
79 };
80 
83 
84 } // end of namespace detail
85 } // end of namespace simd
86 } // end of namespace ipsdk
87 
88 #endif // __IPSDKUTIL_INSTRUCTIONSET_COMPARISON_DETAIL_AVX2_ISGREATEREQUALREGDECL_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
double ipReal64
Base types definition.
Definition: BaseTypes.h:57
Predefined types for Avx instruction set management.
Definition: IsGreaterEqualRegDecl.h:30
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Advanced Vector Extensions 2.
Definition: InstructionSetTypes.h:48
Definition of import/export macro for library.
Definition: RegMaskType.h:29
structure used to retrieve AVX type associated to a base type
Definition: AvxTypes.h:33
float ipReal32
Base types definition.
Definition: BaseTypes.h:56