From cb0630959aeae05bc2ae9f6d80cf5f5983a8fb77 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 23 Nov 2022 11:05:29 +0000 Subject: IVGCVSW-7075 Update Doxygen for 22.11 Release Signed-off-by: Nikhil Raj Change-Id: Ib5669e8fd3739d1b10f5dd694d020d51799896dc --- 22.11/structarmnn_1_1_activation_descriptor.xhtml | 339 ++++++++++++++++++++++ 1 file changed, 339 insertions(+) create mode 100644 22.11/structarmnn_1_1_activation_descriptor.xhtml (limited to '22.11/structarmnn_1_1_activation_descriptor.xhtml') diff --git a/22.11/structarmnn_1_1_activation_descriptor.xhtml b/22.11/structarmnn_1_1_activation_descriptor.xhtml new file mode 100644 index 0000000000..5811575508 --- /dev/null +++ b/22.11/structarmnn_1_1_activation_descriptor.xhtml @@ -0,0 +1,339 @@ + + + + + + + + + + + + + +ArmNN: ActivationDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ActivationDescriptor Struct Reference
+
+
+ +

An ActivationDescriptor for the ActivationLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for ActivationDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + + + + + + + + +

+Public Member Functions

 ActivationDescriptor ()
 
 ActivationDescriptor (armnn::ActivationFunction activation, float a=0, float b=0)
 
bool operator== (const ActivationDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 
+ + + + + + + + + + +

+Public Attributes

ActivationFunction m_Function
 The activation function to use (Sigmoid, TanH, Linear, ReLu, BoundedReLu, SoftReLu, LeakyReLu, Abs, Sqrt, Square, Elu). More...
 
float m_A
 Alpha upper bound value used by the activation functions. (BoundedReLu, Linear, TanH, Elu). More...
 
float m_B
 Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH). More...
 
+

Detailed Description

+

An ActivationDescriptor for the ActivationLayer.

+ +

Definition at line 36 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ActivationDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
ActivationDescriptor ()
+
+inline
+
+ +

Definition at line 38 of file Descriptors.hpp.

+
40  , m_A(0)
41  , m_B(0)
42  {}
+
float m_A
Alpha upper bound value used by the activation functions. (BoundedReLu, Linear, TanH, Elu).
Definition: Descriptors.hpp:61
+
float m_B
Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH).
Definition: Descriptors.hpp:63
+
ActivationFunction m_Function
The activation function to use (Sigmoid, TanH, Linear, ReLu, BoundedReLu, SoftReLu, LeakyReLu, Abs, Sqrt, Square, Elu).
Definition: Descriptors.hpp:59
+
+
+
+ +

◆ ActivationDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ActivationDescriptor (armnn::ActivationFunction activation,
float a = 0,
float b = 0 
)
+
+inline
+
+ +

Definition at line 44 of file Descriptors.hpp.

+
47  : m_Function(activation)
48  , m_A(a)
49  , m_B(b)
50  {}
float m_A
Alpha upper bound value used by the activation functions. (BoundedReLu, Linear, TanH, Elu).
Definition: Descriptors.hpp:61
+
float m_B
Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH).
Definition: Descriptors.hpp:63
+
ActivationFunction m_Function
The activation function to use (Sigmoid, TanH, Linear, ReLu, BoundedReLu, SoftReLu, LeakyReLu, Abs, Sqrt, Square, Elu).
Definition: Descriptors.hpp:59
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const ActivationDescriptorrhs) const
+
+inline
+
+ +

Definition at line 52 of file Descriptors.hpp.

+ +

References ActivationDescriptor::m_B, and ActivationDescriptor::m_Function.

+
53  {
54  return m_Function == rhs.m_Function && m_A == rhs.m_B && m_B == rhs.m_B;
55  }
float m_A
Alpha upper bound value used by the activation functions. (BoundedReLu, Linear, TanH, Elu).
Definition: Descriptors.hpp:61
+
float m_B
Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH).
Definition: Descriptors.hpp:63
+
ActivationFunction m_Function
The activation function to use (Sigmoid, TanH, Linear, ReLu, BoundedReLu, SoftReLu, LeakyReLu, Abs, Sqrt, Square, Elu).
Definition: Descriptors.hpp:59
+
+
+
+

Member Data Documentation

+ +

◆ m_A

+ + + +

◆ m_B

+ + + +

◆ m_Function

+ + +
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1