From d5d43d82c0137e08553e44345c609cdd1a7931c7 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 17 Jun 2022 13:24:58 +0100 Subject: Update Doxygen for 22.05 patch release * Pooling3D added to tfLite delegate * Available in tag 22.05.01 Signed-off-by: Nikhil Raj Change-Id: I8d605bba4e87d30baa2c6d7b338c78a4400dc021 --- ...layer_parameters_3_01_pad_descriptor_01_4.xhtml | 176 +++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 22.05.01/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml (limited to '22.05.01/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml') diff --git a/22.05.01/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml b/22.05.01/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml new file mode 100644 index 0000000000..53f0284155 --- /dev/null +++ b/22.05.01/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml @@ -0,0 +1,176 @@ + + + + + + + + + + + + + +ArmNN: StringifyLayerParameters< PadDescriptor > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05.01 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StringifyLayerParameters< PadDescriptor > Struct Template Reference
+
+
+ +

#include <SerializeLayerParameters.hpp>

+ + + + +

+Static Public Member Functions

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

Detailed Description

+

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

+ + +

Definition at line 113 of file SerializeLayerParameters.hpp.

+

Member Function Documentation

+ +

◆ Serialize()

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

Definition at line 279 of file SerializeLayerParameters.cpp.

+ +

References armnn::GetPaddingModeAsCString(), PadDescriptor::m_PaddingMode, PadDescriptor::m_PadList, and PadDescriptor::m_PadValue.

+
280 {
281  {
282  std::stringstream ss;
283  int count = 0;
284  for (auto&& var : desc.m_PadList)
285  {
286  if (count > 0)
287  {
288  ss << ",";
289  }
290  ss << "[" << var.first << "," << var.second << "]";
291  ++count;
292  }
293  fn("PadList", ss.str());
294  }
295  fn("PadValue", std::to_string(desc.m_PadValue));
296  fn("PaddingMode", GetPaddingModeAsCString(desc.m_PaddingMode));
297 }
constexpr char const * GetPaddingModeAsCString(PaddingMode mode)
Definition: TypesUtils.hpp:128
+
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1