From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/structarmnn_1_1_reshape_descriptor.xhtml | 265 +++++++++++++++++++++++++ 1 file changed, 265 insertions(+) create mode 100644 21.02/structarmnn_1_1_reshape_descriptor.xhtml (limited to '21.02/structarmnn_1_1_reshape_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_reshape_descriptor.xhtml b/21.02/structarmnn_1_1_reshape_descriptor.xhtml new file mode 100644 index 0000000000..3b8b38d036 --- /dev/null +++ b/21.02/structarmnn_1_1_reshape_descriptor.xhtml @@ -0,0 +1,265 @@ + + + + + + + + + + + + + +ArmNN: ReshapeDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + 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 TensorShapeshape)
+
+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 ReshapeDescriptorrhs) 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: +
+
+ + + + -- cgit v1.2.1