From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/structarmnn_1_1_activation_descriptor.xhtml | 334 ++++++++++++++++++++++ 1 file changed, 334 insertions(+) create mode 100644 21.02/structarmnn_1_1_activation_descriptor.xhtml (limited to '21.02/structarmnn_1_1_activation_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_activation_descriptor.xhtml b/21.02/structarmnn_1_1_activation_descriptor.xhtml new file mode 100644 index 0000000000..c3ce216123 --- /dev/null +++ b/21.02/structarmnn_1_1_activation_descriptor.xhtml @@ -0,0 +1,334 @@ + + + + + + + + + + + + + +ArmNN: ActivationDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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 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 25 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ActivationDescriptor() [1/2]

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

Definition at line 27 of file Descriptors.hpp.

+
29  , m_A(0)
30  , m_B(0)
31  {}
+
float m_A
Alpha upper bound value used by the activation functions. (BoundedReLu, Linear, TanH, Elu).
Definition: Descriptors.hpp:50
+
float m_B
Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH).
Definition: Descriptors.hpp:52
+
ActivationFunction m_Function
The activation function to use (Sigmoid, TanH, Linear, ReLu, BoundedReLu, SoftReLu, LeakyReLu, Abs, Sqrt, Square, Elu).
Definition: Descriptors.hpp:48
+
+
+
+ +

◆ ActivationDescriptor() [2/2]

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

Definition at line 33 of file Descriptors.hpp.

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

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 41 of file Descriptors.hpp.

+ +

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

+
42  {
43  return m_Function == rhs.m_Function && m_A == rhs.m_B && m_B == rhs.m_B;
44  }
float m_A
Alpha upper bound value used by the activation functions. (BoundedReLu, Linear, TanH, Elu).
Definition: Descriptors.hpp:50
+
float m_B
Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH).
Definition: Descriptors.hpp:52
+
ActivationFunction m_Function
The activation function to use (Sigmoid, TanH, Linear, ReLu, BoundedReLu, SoftReLu, LeakyReLu, Abs, Sqrt, Square, Elu).
Definition: Descriptors.hpp:48
+
+
+
+

Member Data Documentation

+ +

◆ m_A

+ + + +

◆ m_B

+ + + +

◆ m_Function

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