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

A TransposeDescriptor for the TransposeLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + + + +

+Public Member Functions

 TransposeDescriptor ()
 
 TransposeDescriptor (const PermutationVector &dimMappings)
 
bool operator== (const TransposeDescriptor &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 TransposeDescriptor for the TransposeLayer.

+ +

Definition at line 1123 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ TransposeDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
TransposeDescriptor ()
+
+inline
+
+ +

Definition at line 1125 of file Descriptors.hpp.

+
1126  : m_DimMappings{}
1127  {}
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.
+
+
+
+ +

◆ TransposeDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + +
TransposeDescriptor (const PermutationVectordimMappings)
+
+inline
+
+ +

Definition at line 1129 of file Descriptors.hpp.

+
1130  : m_DimMappings(dimMappings)
1131  {}
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 TransposeDescriptorrhs) const
+
+inline
+
+ +

Definition at line 1133 of file Descriptors.hpp.

+ +

References TransposeDescriptor::m_DimMappings.

+
1134  {
1135  return m_DimMappings.IsEqual(rhs.m_DimMappings);
1136  }
bool IsEqual(const PermutationVector &other) const
Definition: Types.hpp:207
+
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 Data Documentation

+ +

◆ m_DimMappings

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