ArmNN
 23.11
GatherDescriptor Struct Reference

A GatherDescriptor for the GatherLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for GatherDescriptor:
[legend]
Collaboration diagram for GatherDescriptor:
[legend]

Public Member Functions

 GatherDescriptor ()
 
 GatherDescriptor (int32_t axis)
 
bool operator== (const GatherDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

Public Attributes

int32_t m_Axis
 The axis in params to gather indices from. More...
 

Detailed Description

A GatherDescriptor for the GatherLayer.

Definition at line 965 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ GatherDescriptor() [1/2]

GatherDescriptor ( )
inline

Definition at line 967 of file Descriptors.hpp.

968  : m_Axis(0)
969  {}

◆ GatherDescriptor() [2/2]

GatherDescriptor ( int32_t  axis)
inline

Definition at line 971 of file Descriptors.hpp.

972  : m_Axis(axis)
973  {}

Member Function Documentation

◆ operator==()

bool operator== ( const GatherDescriptor rhs) const
inline

Definition at line 975 of file Descriptors.hpp.

976  {
977  return m_Axis == rhs.m_Axis;
978  }

References GatherDescriptor::m_Axis.

Member Data Documentation

◆ m_Axis


The documentation for this struct was generated from the following file:
armnn::GatherDescriptor::m_Axis
int32_t m_Axis
The axis in params to gather indices from.
Definition: Descriptors.hpp:981