ArmNN
 21.02
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 Attributes

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

Detailed Description

A GatherDescriptor for the GatherLayer.

Definition at line 742 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ GatherDescriptor() [1/2]

GatherDescriptor ( )
inline

Definition at line 744 of file Descriptors.hpp.

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

◆ GatherDescriptor() [2/2]

GatherDescriptor ( int32_t  axis)
inline

Definition at line 748 of file Descriptors.hpp.

749  : m_Axis(axis)
750  {}
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 752 of file Descriptors.hpp.

References GatherDescriptor::m_Axis.

753  {
754  return m_Axis == rhs.m_Axis;
755  }
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: