ArmNN
 20.02
SliceDescriptor Struct Reference

A SliceDescriptor for the SliceLayer. More...

#include <Descriptors.hpp>

Public Member Functions

 SliceDescriptor (const std::vector< unsigned int > &begin, const std::vector< unsigned int > &size)
 
 SliceDescriptor ()
 
bool operator== (const SliceDescriptor &rhs) const
 

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

930  : m_Begin(begin)
931  , m_Size(size)
932  {}
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 934 of file Descriptors.hpp.

934  : SliceDescriptor({}, {})
935  {}

Member Function Documentation

◆ operator==()

bool operator== ( const SliceDescriptor rhs) const
inline

Definition at line 937 of file Descriptors.hpp.

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

938  {
939  return m_Begin == rhs.m_Begin && m_Size == rhs.m_Size;
940  }
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

std::vector<unsigned int> m_Begin

◆ m_Size


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