From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- ...structarmnn_1_1_space_to_depth_descriptor.xhtml | 292 +++++++++++++++++++++ 1 file changed, 292 insertions(+) create mode 100644 20.02/structarmnn_1_1_space_to_depth_descriptor.xhtml (limited to '20.02/structarmnn_1_1_space_to_depth_descriptor.xhtml') diff --git a/20.02/structarmnn_1_1_space_to_depth_descriptor.xhtml b/20.02/structarmnn_1_1_space_to_depth_descriptor.xhtml new file mode 100644 index 0000000000..50a951bcc7 --- /dev/null +++ b/20.02/structarmnn_1_1_space_to_depth_descriptor.xhtml @@ -0,0 +1,292 @@ + + + + + + + + + + + + + +ArmNN: SpaceToDepthDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SpaceToDepthDescriptor Struct Reference
+
+
+ +

A SpaceToDepthDescriptor for the SpaceToDepthLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + + + +

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

+

Constructor & Destructor Documentation

+ +

◆ SpaceToDepthDescriptor() [1/2]

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

Definition at line 812 of file Descriptors.hpp.

+ +
+
+ +

◆ SpaceToDepthDescriptor() [2/2]

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

Definition at line 816 of file Descriptors.hpp.

+
817  : m_BlockSize(blockSize)
818  , m_DataLayout(dataLayout)
819  {}
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 821 of file Descriptors.hpp.

+ +

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

+
822  {
823  return m_BlockSize == rhs.m_BlockSize && m_DataLayout == rhs.m_DataLayout;
824  }
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