From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- .../structarmnn_1_1_reshape_descriptor.xhtml | 256 +++++++++++++++++++++ 1 file changed, 256 insertions(+) create mode 100644 Documentation/structarmnn_1_1_reshape_descriptor.xhtml (limited to 'Documentation/structarmnn_1_1_reshape_descriptor.xhtml') diff --git a/Documentation/structarmnn_1_1_reshape_descriptor.xhtml b/Documentation/structarmnn_1_1_reshape_descriptor.xhtml new file mode 100644 index 0000000000..5ffacb9dae --- /dev/null +++ b/Documentation/structarmnn_1_1_reshape_descriptor.xhtml @@ -0,0 +1,256 @@ + + + + + + + + + + + + + +ArmNN: ReshapeDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ReshapeDescriptor Struct Reference
+
+
+ +

A ReshapeDescriptor for the ReshapeLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + + + +

+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 758 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ReshapeDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
ReshapeDescriptor ()
+
+inline
+
+ +

Definition at line 760 of file Descriptors.hpp.

+
761  : m_TargetShape()
762  {}
TensorShape m_TargetShape
Target shape value.
+
+
+
+ +

◆ ReshapeDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + +
ReshapeDescriptor (const TensorShapeshape)
+
+inline
+
+ +

Definition at line 764 of file Descriptors.hpp.

+
765  : m_TargetShape(shape)
766  {}
TensorShape m_TargetShape
Target shape value.
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const ReshapeDescriptorrhs) const
+
+inline
+
+ +

Definition at line 768 of file Descriptors.hpp.

+ +

References ReshapeDescriptor::m_TargetShape.

+
769  {
770  return m_TargetShape == rhs.m_TargetShape;
771  }
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