From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- ...tructarmnn_1_1_fully_connected_descriptor.xhtml | 250 +++++++++++++++++++++ 1 file changed, 250 insertions(+) create mode 100644 20.02/structarmnn_1_1_fully_connected_descriptor.xhtml (limited to '20.02/structarmnn_1_1_fully_connected_descriptor.xhtml') diff --git a/20.02/structarmnn_1_1_fully_connected_descriptor.xhtml b/20.02/structarmnn_1_1_fully_connected_descriptor.xhtml new file mode 100644 index 0000000000..41e650bce2 --- /dev/null +++ b/20.02/structarmnn_1_1_fully_connected_descriptor.xhtml @@ -0,0 +1,250 @@ + + + + + + + + + + + + + +ArmNN: FullyConnectedDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
FullyConnectedDescriptor Struct Reference
+
+
+ +

A FullyConnectedDescriptor for the FullyConnectedLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + +

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

+

Constructor & Destructor Documentation

+ +

◆ FullyConnectedDescriptor()

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

Definition at line 375 of file Descriptors.hpp.

+
376  : m_BiasEnabled(false)
377  , m_TransposeWeightMatrix(false)
378  {}
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 380 of file Descriptors.hpp.

+ +

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

+
381  {
382  return m_BiasEnabled == rhs.m_BiasEnabled && m_TransposeWeightMatrix == rhs.m_TransposeWeightMatrix;
383  }
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