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

A PermuteDescriptor for the PermuteLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for PermuteDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + + + +

+Public Member Functions

 PermuteDescriptor ()
 
 PermuteDescriptor (const PermutationVector &dimMappings)
 
bool operator== (const PermuteDescriptor &rhs) const
 
+ + + + +

+Public Attributes

PermutationVector m_DimMappings
 Indicates how to translate tensor elements from a given source into the target destination, when source and target potentially have different memory layouts e.g. More...
 
+

Detailed Description

+

A PermuteDescriptor for the PermuteLayer.

+ +

Definition at line 118 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ PermuteDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
PermuteDescriptor ()
+
+inline
+
+ +

Definition at line 120 of file Descriptors.hpp.

+
121  : m_DimMappings{}
122  {}
PermutationVector m_DimMappings
Indicates how to translate tensor elements from a given source into the target destination, when source and target potentially have different memory layouts e.g.
+
+
+
+ +

◆ PermuteDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + +
PermuteDescriptor (const PermutationVectordimMappings)
+
+inline
+
+ +

Definition at line 124 of file Descriptors.hpp.

+
125  : m_DimMappings(dimMappings)
126  {}
PermutationVector m_DimMappings
Indicates how to translate tensor elements from a given source into the target destination, when source and target potentially have different memory layouts e.g.
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 128 of file Descriptors.hpp.

+ +

References PermuteDescriptor::m_DimMappings.

+
129  {
130  return m_DimMappings.IsEqual(rhs.m_DimMappings);
131  }
PermutationVector m_DimMappings
Indicates how to translate tensor elements from a given source into the target destination, when source and target potentially have different memory layouts e.g.
+
bool IsEqual(const PermutationVector &other) const
Definition: Types.hpp:246
+
+
+
+

Member Data Documentation

+ +

◆ m_DimMappings

+ +
+
+ + + + +
PermutationVector m_DimMappings
+
+ +

Indicates how to translate tensor elements from a given source into the target destination, when source and target potentially have different memory layouts e.g.

+

{0U, 3U, 1U, 2U}.

+ +

Definition at line 135 of file Descriptors.hpp.

+ +

Referenced by armnnSerializer::GetFlatBufferArgMinMaxFunction(), PermuteLayer::GetPermutation(), PermuteLayer::InferOutputShapes(), PermuteDescriptor::operator==(), PermuteValueSet1Test(), PermuteValueSet2Test(), PermuteValueSet3Test(), StringifyLayerParameters< PermuteDescriptor >::Serialize(), and SimplePermuteTest().

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