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 --- ...structarmnn_1_1_space_to_depth_descriptor.xhtml | 301 +++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 21.02/structarmnn_1_1_space_to_depth_descriptor.xhtml (limited to '21.02/structarmnn_1_1_space_to_depth_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_space_to_depth_descriptor.xhtml b/21.02/structarmnn_1_1_space_to_depth_descriptor.xhtml new file mode 100644 index 0000000000..15e4ec10b3 --- /dev/null +++ b/21.02/structarmnn_1_1_space_to_depth_descriptor.xhtml @@ -0,0 +1,301 @@ + + + + + + + + + + + + + +ArmNN: SpaceToDepthDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SpaceToDepthDescriptor Struct Reference
+
+
+ +

A SpaceToDepthDescriptor for the SpaceToDepthLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for SpaceToDepthDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + + + +

+Public Member Functions

 SpaceToDepthDescriptor ()
 
 SpaceToDepthDescriptor (unsigned int blockSize, DataLayout dataLayout)
 
bool operator== (const SpaceToDepthDescriptor &rhs) const
 
+ + + + + + + +

+Public Attributes

unsigned int m_BlockSize
 Scalar specifying the input block size. It must be >= 1. More...
 
DataLayout m_DataLayout
 The data layout to be used (NCHW, NHWC). More...
 
+

Detailed Description

+

A SpaceToDepthDescriptor for the SpaceToDepthLayer.

+ +

Definition at line 884 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ SpaceToDepthDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
SpaceToDepthDescriptor ()
+
+inline
+
+ +

Definition at line 886 of file Descriptors.hpp.

+ +
+
+ +

◆ SpaceToDepthDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
SpaceToDepthDescriptor (unsigned int blockSize,
DataLayout dataLayout 
)
+
+inline
+
+ +

Definition at line 890 of file Descriptors.hpp.

+
891  : m_BlockSize(blockSize)
892  , m_DataLayout(dataLayout)
893  {}
unsigned int m_BlockSize
Scalar specifying the input block size. It must be >= 1.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 895 of file Descriptors.hpp.

+ +

References SpaceToDepthDescriptor::m_BlockSize, and SpaceToDepthDescriptor::m_DataLayout.

+
896  {
897  return m_BlockSize == rhs.m_BlockSize && m_DataLayout == rhs.m_DataLayout;
898  }
unsigned int m_BlockSize
Scalar specifying the input block size. It must be >= 1.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
+
+
+

Member Data Documentation

+ +

◆ m_BlockSize

+ + + +

◆ m_DataLayout

+ + +
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1