ArmNN
 20.08
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 381 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ FullyConnectedDescriptor()

Definition at line 383 of file Descriptors.hpp.

384  : m_BiasEnabled(false)
385  , m_TransposeWeightMatrix(false)
386  {}
bool m_TransposeWeightMatrix
Enable/disable transpose weight matrix.
bool m_BiasEnabled
Enable/disable bias.

Member Function Documentation

◆ operator==()

bool operator== ( const FullyConnectedDescriptor rhs) const
inline

Definition at line 388 of file Descriptors.hpp.

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

389  {
390  return m_BiasEnabled == rhs.m_BiasEnabled && m_TransposeWeightMatrix == rhs.m_TransposeWeightMatrix;
391  }
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: