IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
LogReg.h
1 // LogReg.h:
3 // -----------------
4 //
16 
17 #ifndef __IPSDKUTIL_INSTRUCTIONSET_ARITHMETIC_DETAIL_LOGREG_H__
18 #define __IPSDKUTIL_INSTRUCTIONSET_ARITHMETIC_DETAIL_LOGREG_H__
19 
22 
23 namespace ipsdk {
24 namespace simd {
25 namespace detail {
26 
29 
36 template <eInstructionSet::domain instructionSet,
37  eInstructionSet::domain instructionSetFma,
38  typename T,
39  typename Enable=void>
40 struct LogReg
41 {
42 };
43 
46 
47 } // end of namespace detail
48 } // end of namespace simd
49 } // end of namespace ipsdk
50 
52 
53 #endif // __IPSDKUTIL_INSTRUCTIONSET_ARITHMETIC_DETAIL_LOGREG_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Predefined types associated to instruction set management.
specialization of ipsdk::simd::detail::LogReg structure for SSE2 instruction set
Definition of import/export macro for library.
template structure which is specialized to implement the computation of natural logarithm on a scalar...
Definition: LogReg.h:40