ArmNN
 23.08
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 944 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ GatherDescriptor() [1/2]

GatherDescriptor ( )
inline

Definition at line 946 of file Descriptors.hpp.

947  : m_Axis(0)
948  {}

◆ GatherDescriptor() [2/2]

GatherDescriptor ( int32_t  axis)
inline

Definition at line 950 of file Descriptors.hpp.

951  : m_Axis(axis)
952  {}

Member Function Documentation

◆ operator==()

bool operator== ( const GatherDescriptor rhs) const
inline

Definition at line 954 of file Descriptors.hpp.

955  {
956  return m_Axis == rhs.m_Axis;
957  }

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:960