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 --- 20.02/structarmnn_1_1_stack_descriptor.xhtml | 324 +++++++++++++++++++++++++++ 1 file changed, 324 insertions(+) create mode 100644 20.02/structarmnn_1_1_stack_descriptor.xhtml (limited to '20.02/structarmnn_1_1_stack_descriptor.xhtml') diff --git a/20.02/structarmnn_1_1_stack_descriptor.xhtml b/20.02/structarmnn_1_1_stack_descriptor.xhtml new file mode 100644 index 0000000000..565b85560e --- /dev/null +++ b/20.02/structarmnn_1_1_stack_descriptor.xhtml @@ -0,0 +1,324 @@ + + + + + + + + + + + + + +ArmNN: StackDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StackDescriptor Struct Reference
+
+
+ +

A StackDescriptor for the StackLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + + + +

+Public Member Functions

 StackDescriptor ()
 
 StackDescriptor (uint32_t axis, uint32_t numInputs, const TensorShape &inputShape)
 
bool operator== (const StackDescriptor &rhs) const
 
+ + + + + + + + + + +

+Public Attributes

uint32_t m_Axis
 0-based axis along which to stack the input tensors. More...
 
uint32_t m_NumInputs
 Number of input tensors. More...
 
TensorShape m_InputShape
 Required shape of all input tensors. More...
 
+

Detailed Description

+

A StackDescriptor for the StackLayer.

+ +

Definition at line 950 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ StackDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
StackDescriptor ()
+
+inline
+
+ +

Definition at line 952 of file Descriptors.hpp.

+
953  : m_Axis(0)
954  , m_NumInputs(0)
955  , m_InputShape()
956  {}
uint32_t m_Axis
0-based axis along which to stack the input tensors.
+
TensorShape m_InputShape
Required shape of all input tensors.
+
uint32_t m_NumInputs
Number of input tensors.
+
+
+
+ +

◆ StackDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
StackDescriptor (uint32_t axis,
uint32_t numInputs,
const TensorShapeinputShape 
)
+
+inline
+
+ +

Definition at line 958 of file Descriptors.hpp.

+
959  : m_Axis(axis)
960  , m_NumInputs(numInputs)
961  , m_InputShape(inputShape)
962  {}
uint32_t m_Axis
0-based axis along which to stack the input tensors.
+
TensorShape m_InputShape
Required shape of all input tensors.
+
uint32_t m_NumInputs
Number of input tensors.
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 964 of file Descriptors.hpp.

+ +

References StackDescriptor::m_Axis, StackDescriptor::m_InputShape, and StackDescriptor::m_NumInputs.

+
965  {
966  return m_Axis == rhs.m_Axis &&
967  m_NumInputs == rhs.m_NumInputs &&
968  m_InputShape == rhs.m_InputShape;
969  }
uint32_t m_Axis
0-based axis along which to stack the input tensors.
+
TensorShape m_InputShape
Required shape of all input tensors.
+
uint32_t m_NumInputs
Number of input tensors.
+
+
+
+

Member Data Documentation

+ +

◆ m_Axis

+ + + +

◆ m_InputShape

+ + + +

◆ m_NumInputs

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