ArmNN
 23.02
SliceDescriptor Struct Reference

A SliceDescriptor for the SliceLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for SliceDescriptor:
BaseDescriptor

Public Member Functions

 SliceDescriptor (const std::vector< unsigned int > &begin, const std::vector< unsigned int > &size)
 
 SliceDescriptor ()
 
bool operator== (const SliceDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

Public Attributes

std::vector< unsigned int > m_Begin
 Beginning indices of the slice in each dimension. More...
 
std::vector< unsigned int > m_Size
 Size of the slice in each dimension. More...
 

Detailed Description

A SliceDescriptor for the SliceLayer.

Definition at line 1175 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ SliceDescriptor() [1/2]

SliceDescriptor ( const std::vector< unsigned int > &  begin,
const std::vector< unsigned int > &  size 
)
inline

Definition at line 1177 of file Descriptors.hpp.

1178  : m_Begin(begin)
1179  , m_Size(size)
1180  {}

◆ SliceDescriptor() [2/2]

SliceDescriptor ( )
inline

Definition at line 1182 of file Descriptors.hpp.

1182  : SliceDescriptor({}, {})
1183  {}

Member Function Documentation

◆ operator==()

bool operator== ( const SliceDescriptor rhs) const
inline

Definition at line 1185 of file Descriptors.hpp.

1186  {
1187  return m_Begin == rhs.m_Begin && m_Size == rhs.m_Size;
1188  }

References SliceDescriptor::m_Begin, and SliceDescriptor::m_Size.

Member Data Documentation

◆ m_Begin

std::vector<unsigned int> m_Begin

◆ m_Size


The documentation for this struct was generated from the following file:
armnn::SliceDescriptor::SliceDescriptor
SliceDescriptor()
Definition: Descriptors.hpp:1182
armnn::SliceDescriptor::m_Size
std::vector< unsigned int > m_Size
Size of the slice in each dimension.
Definition: Descriptors.hpp:1194
armnn::SliceDescriptor::m_Begin
std::vector< unsigned int > m_Begin
Beginning indices of the slice in each dimension.
Definition: Descriptors.hpp:1191