IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
LogicalOrReg.h
Go to the documentation of this file.
1 // LogicalOrReg.h:
3 // -------------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_AVX_LOGICALORREG_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_AVX_LOGICALORREG_H__
17 
23 
24 namespace ipsdk {
25 namespace simd {
26 namespace detail {
27 
30 
31 template <typename T>
33 {
34  static IPSDK_FORCEINLINE
35  typename AvxType<T>::Type
36  act(const typename AvxType<T>::Type& in1, const typename AvxType<T>::Type& in2)
37  {
39  }
40 
41  static IPSDK_FORCEINLINE
42  void
43  act(const typename AvxType<T>::Type& in1,
44  const typename AvxType<T>::Type& in2,
45  typename AvxType<T>::Type& out)
46  {
48  }
49 };
50 
53 
54 } // end of namespace detail
55 } // end of namespace simd
56 } // end of namespace ipsdk
57 
58 #endif // __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_AVX_LOGICALORREG_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Predefined types for Avx instruction set management.
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Advanced Vector Extensions.
Definition: InstructionSetTypes.h:44
Definition: BitwiseOrReg.h:30
Definition of import/export macro for library.
Definition: LogicalOrReg.h:30
structure used to retrieve AVX type associated to a base type
Definition: AvxTypes.h:33