ArmNN
 21.02
ReshapeDescriptor Struct Reference

A ReshapeDescriptor for the ReshapeLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for ReshapeDescriptor:
BaseDescriptor

Public Member Functions

 ReshapeDescriptor ()
 
 ReshapeDescriptor (const TensorShape &shape)
 
bool operator== (const ReshapeDescriptor &rhs) const
 

Public Attributes

TensorShape m_TargetShape
 Target shape value. More...
 

Detailed Description

A ReshapeDescriptor for the ReshapeLayer.

Definition at line 832 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ ReshapeDescriptor() [1/2]

ReshapeDescriptor ( )
inline

Definition at line 834 of file Descriptors.hpp.

835  : m_TargetShape()
836  {}
TensorShape m_TargetShape
Target shape value.

◆ ReshapeDescriptor() [2/2]

ReshapeDescriptor ( const TensorShape shape)
inline

Definition at line 838 of file Descriptors.hpp.

839  : m_TargetShape(shape)
840  {}
TensorShape m_TargetShape
Target shape value.

Member Function Documentation

◆ operator==()

bool operator== ( const ReshapeDescriptor rhs) const
inline

Definition at line 842 of file Descriptors.hpp.

References ReshapeDescriptor::m_TargetShape.

843  {
844  return m_TargetShape == rhs.m_TargetShape;
845  }
TensorShape m_TargetShape
Target shape value.

Member Data Documentation

◆ m_TargetShape


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