ArmNN
 23.11
ReshapeDescriptor Struct Reference

A ReshapeDescriptor for the ReshapeLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for ReshapeDescriptor:
[legend]
Collaboration diagram for ReshapeDescriptor:
[legend]

Public Member Functions

 ReshapeDescriptor ()
 
 ReshapeDescriptor (const TensorShape &shape)
 
bool operator== (const ReshapeDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

Public Attributes

TensorShape m_TargetShape
 Target shape value. More...
 

Detailed Description

A ReshapeDescriptor for the ReshapeLayer.

Definition at line 1023 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ ReshapeDescriptor() [1/2]

ReshapeDescriptor ( )
inline

Definition at line 1025 of file Descriptors.hpp.

1026  : m_TargetShape()
1027  {}

◆ ReshapeDescriptor() [2/2]

ReshapeDescriptor ( const TensorShape shape)
inline

Definition at line 1029 of file Descriptors.hpp.

1030  : m_TargetShape(shape)
1031  {}

Member Function Documentation

◆ operator==()

bool operator== ( const ReshapeDescriptor rhs) const
inline

Definition at line 1033 of file Descriptors.hpp.

1034  {
1035  return m_TargetShape == rhs.m_TargetShape;
1036  }

References ReshapeDescriptor::m_TargetShape.

Member Data Documentation

◆ m_TargetShape


The documentation for this struct was generated from the following file:
armnn::ReshapeDescriptor::m_TargetShape
TensorShape m_TargetShape
Target shape value.
Definition: Descriptors.hpp:1039