From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/structarmnn_1_1_softmax_descriptor.xhtml | 259 +++++++++++++++++++++++++ 1 file changed, 259 insertions(+) create mode 100644 21.08/structarmnn_1_1_softmax_descriptor.xhtml (limited to '21.08/structarmnn_1_1_softmax_descriptor.xhtml') diff --git a/21.08/structarmnn_1_1_softmax_descriptor.xhtml b/21.08/structarmnn_1_1_softmax_descriptor.xhtml new file mode 100644 index 0000000000..0b1262a773 --- /dev/null +++ b/21.08/structarmnn_1_1_softmax_descriptor.xhtml @@ -0,0 +1,259 @@ + + + + + + + + + + + + + +ArmNN: SoftmaxDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SoftmaxDescriptor Struct Reference
+
+
+ +

A SoftmaxDescriptor for the SoftmaxLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for SoftmaxDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + +

+Public Member Functions

 SoftmaxDescriptor ()
 
bool operator== (const SoftmaxDescriptor &rhs) const
 
+ + + + + + + +

+Public Attributes

float m_Beta
 Exponentiation value. More...
 
int m_Axis
 Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed on. More...
 
+

Detailed Description

+

A SoftmaxDescriptor for the SoftmaxLayer.

+ +

Definition at line 139 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ SoftmaxDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
SoftmaxDescriptor ()
+
+inline
+
+ +

Definition at line 141 of file Descriptors.hpp.

+
142  : m_Beta(1.0f)
143  , m_Axis(-1)
144  {}
int m_Axis
Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed o...
+
float m_Beta
Exponentiation value.
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 146 of file Descriptors.hpp.

+ +

References SoftmaxDescriptor::m_Axis, and SoftmaxDescriptor::m_Beta.

+
147  {
148  return m_Beta == rhs.m_Beta && m_Axis == rhs.m_Axis;
149  }
int m_Axis
Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed o...
+
float m_Beta
Exponentiation value.
+
+
+
+

Member Data Documentation

+ +

◆ m_Axis

+ + + +

◆ m_Beta

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