IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IsOutOfRangeReg.h
Go to the documentation of this file.
1 // IsOutOfRangeReg.h:
3 // -------------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_COMPARISON_DETAIL_AVX512_ISOUTOFRANGEREG_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_COMPARISON_DETAIL_AVX512_ISOUTOFRANGEREG_H__
17 
24 
25 namespace ipsdk {
26 namespace simd {
27 namespace detail {
28 
31 
32 template <typename T>
34 {
35  static IPSDK_FORCEINLINE
37  act(const typename Avx512Type<T>::Type& in,
38  const typename Avx512Type<T>::Type& regMin,
39  const typename Avx512Type<T>::Type& regMax)
40  {
42  act(in, regMin, regMax, out);
43  return out;
44  }
45 
46  static IPSDK_FORCEINLINE
47  void
48  act(const typename Avx512Type<T>::Type& in,
49  const typename Avx512Type<T>::Type& regMin,
50  const typename Avx512Type<T>::Type& regMax,
52  {
54  }
55 };
56 
59 
60 } // end of namespace detail
61 } // end of namespace simd
62 } // end of namespace ipsdk
63 
64 #endif // __IPSDKUTIL_INSTRUCTIONSET_COMPARISON_DETAIL_AVX512_ISOUTOFRANGEREG_H__
Definition: IsOutOfRangeReg.h:30
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Definition: IsGreaterRegDecl.h:30
(including fundation and byte and word instructions)
Definition: InstructionSetTypes.h:51
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Definition of import/export macro for library.
Definition: RegMaskType.h:29
Definition: IsLessRegDecl.h:30
structure used to retrieve AVX512 type associated to a base type
Definition: Avx512Types.h:36