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 --- ...tructarmnn_1_1_fully_connected_descriptor.xhtml | 259 +++++++++++++++++++++ 1 file changed, 259 insertions(+) create mode 100644 21.02/structarmnn_1_1_fully_connected_descriptor.xhtml (limited to '21.02/structarmnn_1_1_fully_connected_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_fully_connected_descriptor.xhtml b/21.02/structarmnn_1_1_fully_connected_descriptor.xhtml new file mode 100644 index 0000000000..35d406d851 --- /dev/null +++ b/21.02/structarmnn_1_1_fully_connected_descriptor.xhtml @@ -0,0 +1,259 @@ + + + + + + + + + + + + + +ArmNN: FullyConnectedDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
FullyConnectedDescriptor Struct Reference
+
+
+ +

A FullyConnectedDescriptor for the FullyConnectedLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for FullyConnectedDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + +

+Public Member Functions

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

+Public Attributes

bool m_BiasEnabled
 Enable/disable bias. More...
 
bool m_TransposeWeightMatrix
 Enable/disable transpose weight matrix. More...
 
+

Detailed Description

+

A FullyConnectedDescriptor for the FullyConnectedLayer.

+ +

Definition at line 389 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ FullyConnectedDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
FullyConnectedDescriptor ()
+
+inline
+
+ +

Definition at line 391 of file Descriptors.hpp.

+
392  : m_BiasEnabled(false)
393  , m_TransposeWeightMatrix(false)
394  {}
bool m_TransposeWeightMatrix
Enable/disable transpose weight matrix.
+
bool m_BiasEnabled
Enable/disable bias.
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 396 of file Descriptors.hpp.

+ +

References FullyConnectedDescriptor::m_BiasEnabled, and FullyConnectedDescriptor::m_TransposeWeightMatrix.

+
397  {
398  return m_BiasEnabled == rhs.m_BiasEnabled && m_TransposeWeightMatrix == rhs.m_TransposeWeightMatrix;
399  }
bool m_TransposeWeightMatrix
Enable/disable transpose weight matrix.
+
bool m_BiasEnabled
Enable/disable bias.
+
+
+
+

Member Data Documentation

+ +

◆ m_BiasEnabled

+ + + +

◆ m_TransposeWeightMatrix

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