ArmNN
 22.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 1180 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 1182 of file Descriptors.hpp.

1183  : m_Begin(begin)
1184  , m_Size(size)
1185  {}
std::vector< unsigned int > m_Size
Size of the slice in each dimension.
std::vector< unsigned int > m_Begin
Beginning indices of the slice in each dimension.

◆ SliceDescriptor() [2/2]

SliceDescriptor ( )
inline

Definition at line 1187 of file Descriptors.hpp.

1187  : SliceDescriptor({}, {})
1188  {}

Member Function Documentation

◆ operator==()

bool operator== ( const SliceDescriptor rhs) const
inline

Definition at line 1190 of file Descriptors.hpp.

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

1191  {
1192  return m_Begin == rhs.m_Begin && m_Size == rhs.m_Size;
1193  }
std::vector< unsigned int > m_Size
Size of the slice in each dimension.
std::vector< unsigned int > m_Begin
Beginning indices of the slice in each dimension.

Member Data Documentation

◆ m_Begin

◆ m_Size


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