ArmNN
 22.08
GatherDescriptor Struct Reference

A GatherDescriptor for the GatherLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for GatherDescriptor:
BaseDescriptor

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

Constructor & Destructor Documentation

◆ GatherDescriptor() [1/2]

GatherDescriptor ( )
inline

Definition at line 907 of file Descriptors.hpp.

908  : m_Axis(0)
909  {}
int32_t m_Axis
The axis in params to gather indices from.

◆ GatherDescriptor() [2/2]

GatherDescriptor ( int32_t  axis)
inline

Definition at line 911 of file Descriptors.hpp.

912  : m_Axis(axis)
913  {}
int32_t m_Axis
The axis in params to gather indices from.

Member Function Documentation

◆ operator==()

bool operator== ( const GatherDescriptor rhs) const
inline

Definition at line 915 of file Descriptors.hpp.

References GatherDescriptor::m_Axis.

916  {
917  return m_Axis == rhs.m_Axis;
918  }
int32_t m_Axis
The axis in params to gather indices from.

Member Data Documentation

◆ m_Axis


The documentation for this struct was generated from the following file: