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 --- ...uctarmnn_1_1_space_to_batch_nd_descriptor.xhtml | 322 +++++++++++++++++++++ 1 file changed, 322 insertions(+) create mode 100644 20.02/structarmnn_1_1_space_to_batch_nd_descriptor.xhtml (limited to '20.02/structarmnn_1_1_space_to_batch_nd_descriptor.xhtml') diff --git a/20.02/structarmnn_1_1_space_to_batch_nd_descriptor.xhtml b/20.02/structarmnn_1_1_space_to_batch_nd_descriptor.xhtml new file mode 100644 index 0000000000..47c9d61482 --- /dev/null +++ b/20.02/structarmnn_1_1_space_to_batch_nd_descriptor.xhtml @@ -0,0 +1,322 @@ + + + + + + + + + + + + + +ArmNN: SpaceToBatchNdDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SpaceToBatchNdDescriptor Struct Reference
+
+
+ +

A SpaceToBatchNdDescriptor for the SpaceToBatchNdLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + + + +

+Public Member Functions

 SpaceToBatchNdDescriptor ()
 
 SpaceToBatchNdDescriptor (const std::vector< unsigned int > &blockShape, const std::vector< std::pair< unsigned int, unsigned int >> &padList)
 
bool operator== (const SpaceToBatchNdDescriptor &rhs) const
 
+ + + + + + + + + + +

+Public Attributes

std::vector< unsigned int > m_BlockShape
 Block shape value. More...
 
std::vector< std::pair< unsigned int, unsigned int > > m_PadList
 Specifies the padding values for the input dimension: heightPad{top, bottom} widthPad{left, right}. More...
 
DataLayout m_DataLayout
 The data layout to be used (NCHW, NHWC). More...
 
+

Detailed Description

+

A SpaceToBatchNdDescriptor for the SpaceToBatchNdLayer.

+ +

Definition at line 778 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ SpaceToBatchNdDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
SpaceToBatchNdDescriptor ()
+
+inline
+
+ +

Definition at line 780 of file Descriptors.hpp.

+ +

References armnn::NCHW.

+
781  : m_BlockShape({1, 1})
782  , m_PadList({{0, 0}, {0, 0}})
784  {}
std::vector< std::pair< unsigned int, unsigned int > > m_PadList
Specifies the padding values for the input dimension: heightPad{top, bottom} widthPad{left, right}.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
std::vector< unsigned int > m_BlockShape
Block shape value.
+ +
+
+
+ +

◆ SpaceToBatchNdDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
SpaceToBatchNdDescriptor (const std::vector< unsigned int > & blockShape,
const std::vector< std::pair< unsigned int, unsigned int >> & padList 
)
+
+inline
+
+ +

Definition at line 786 of file Descriptors.hpp.

+
788  : m_BlockShape(blockShape)
789  , m_PadList(padList)
791  {}
std::vector< std::pair< unsigned int, unsigned int > > m_PadList
Specifies the padding values for the input dimension: heightPad{top, bottom} widthPad{left, right}.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
std::vector< unsigned int > m_BlockShape
Block shape value.
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 793 of file Descriptors.hpp.

+ +

References SpaceToBatchNdDescriptor::m_BlockShape, SpaceToBatchNdDescriptor::m_DataLayout, and SpaceToBatchNdDescriptor::m_PadList.

+
794  {
795  return m_BlockShape == rhs.m_BlockShape &&
796  m_PadList == rhs.m_PadList &&
797  m_DataLayout == rhs.m_DataLayout;
798  }
std::vector< std::pair< unsigned int, unsigned int > > m_PadList
Specifies the padding values for the input dimension: heightPad{top, bottom} widthPad{left, right}.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
std::vector< unsigned int > m_BlockShape
Block shape value.
+
+
+
+

Member Data Documentation

+ +

◆ m_BlockShape

+ + + +

◆ m_DataLayout

+ + + +

◆ m_PadList

+ +
+
+ + + + +
std::vector<std::pair<unsigned int, unsigned int> > m_PadList
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1