From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- 23.08/structarmnn_1_1_softmax_descriptor.html | 269 ++++++++++++++++++++++++++ 1 file changed, 269 insertions(+) create mode 100644 23.08/structarmnn_1_1_softmax_descriptor.html (limited to '23.08/structarmnn_1_1_softmax_descriptor.html') diff --git a/23.08/structarmnn_1_1_softmax_descriptor.html b/23.08/structarmnn_1_1_softmax_descriptor.html new file mode 100644 index 0000000000..366f0baef5 --- /dev/null +++ b/23.08/structarmnn_1_1_softmax_descriptor.html @@ -0,0 +1,269 @@ + + + + + + + + +Arm NN: SoftmaxDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SoftmaxDescriptor Struct Reference
+
+
+ +

A SoftmaxDescriptor for the SoftmaxLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for SoftmaxDescriptor:
+
+
+
+
[legend]
+
+Collaboration diagram for SoftmaxDescriptor:
+
+
+
+
[legend]
+ + + + + + + + + + + +

+Public Member Functions

 SoftmaxDescriptor ()
 
bool operator== (const SoftmaxDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 
+ + + + + + + +

+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 177 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ SoftmaxDescriptor()

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

Definition at line 179 of file Descriptors.hpp.

+
180  : m_Beta(1.0f)
+
181  , m_Axis(-1)
+
182  {}
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 184 of file Descriptors.hpp.

+
185  {
+
186  return m_Beta == rhs.m_Beta && m_Axis == rhs.m_Axis;
+
187  }
+
+

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

+ +
+
+

Member Data Documentation

+ +

◆ m_Axis

+ + + +

◆ m_Beta

+ + +
The documentation for this struct was generated from the following file: +
+
+
float m_Beta
Exponentiation value.
+
int m_Axis
Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed o...
+ + + + -- cgit v1.2.1