From add078b7f9a658d52ee6e8fe6771ea0517c07674 Mon Sep 17 00:00:00 2001 From: mathad01 Date: Mon, 10 May 2021 16:51:20 +0100 Subject: IVGCVSW-5908 Update 21.05 Doxygen Documents Signed-off-by: mathad01 Change-Id: I95316d4fc5f9d10185492dc835bb2411c1daea7b --- ...r_parameters_3_01_permute_descriptor_01_4.xhtml | 175 +++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 21.05/structarmnn_1_1_stringify_layer_parameters_3_01_permute_descriptor_01_4.xhtml (limited to '21.05/structarmnn_1_1_stringify_layer_parameters_3_01_permute_descriptor_01_4.xhtml') diff --git a/21.05/structarmnn_1_1_stringify_layer_parameters_3_01_permute_descriptor_01_4.xhtml b/21.05/structarmnn_1_1_stringify_layer_parameters_3_01_permute_descriptor_01_4.xhtml new file mode 100644 index 0000000000..2203ad9b14 --- /dev/null +++ b/21.05/structarmnn_1_1_stringify_layer_parameters_3_01_permute_descriptor_01_4.xhtml @@ -0,0 +1,175 @@ + + + + + + + + + + + + + +ArmNN: StringifyLayerParameters< PermuteDescriptor > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StringifyLayerParameters< PermuteDescriptor > Struct Template Reference
+
+
+ +

#include <SerializeLayerParameters.hpp>

+ + + + +

+Static Public Member Functions

static void Serialize (ParameterStringifyFunction &fn, const PermuteDescriptor &desc)
 
+

Detailed Description

+

template<>
+struct armnn::StringifyLayerParameters< PermuteDescriptor >

+ + +

Definition at line 28 of file SerializeLayerParameters.hpp.

+

Member Function Documentation

+ +

◆ Serialize()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
void Serialize (ParameterStringifyFunctionfn,
const PermuteDescriptordesc 
)
+
+static
+
+ +

Definition at line 14 of file SerializeLayerParameters.cpp.

+ +

References PermuteDescriptor::m_DimMappings.

+
16 {
17  std::stringstream ss;
18  ss << "[";
19  bool addComma = false;
20  for (auto it : desc.m_DimMappings)
21  {
22  if (addComma)
23  {
24  ss << ",";
25  }
26  ss << it;
27  addComma = true;
28  }
29  ss << "]";
30 
31  fn("DimMappings",ss.str());
32 }
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1