ArmNN
 23.05
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 932 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ GatherDescriptor() [1/2]

GatherDescriptor ( )
inline

Definition at line 934 of file Descriptors.hpp.

935  : m_Axis(0)
936  {}

◆ GatherDescriptor() [2/2]

GatherDescriptor ( int32_t  axis)
inline

Definition at line 938 of file Descriptors.hpp.

939  : m_Axis(axis)
940  {}

Member Function Documentation

◆ operator==()

bool operator== ( const GatherDescriptor rhs) const
inline

Definition at line 942 of file Descriptors.hpp.

943  {
944  return m_Axis == rhs.m_Axis;
945  }

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