From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- ..._layer_parameters_3_01_pad_descriptor_01_4.html | 189 +++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 23.11/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.html (limited to '23.11/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.html') diff --git a/23.11/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.html b/23.11/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.html new file mode 100644 index 0000000000..27b9b89dab --- /dev/null +++ b/23.11/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.html @@ -0,0 +1,189 @@ + + + + + + + + +Arm NN: StringifyLayerParameters< PadDescriptor > Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StringifyLayerParameters< PadDescriptor > Struct Reference
+
+
+ +

#include <SerializeLayerParameters.hpp>

+ + + + +

+Static Public Member Functions

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

Detailed Description

+
+

Definition at line 128 of file SerializeLayerParameters.hpp.

+

Member Function Documentation

+ +

◆ Serialize()

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

Definition at line 301 of file SerializeLayerParameters.cpp.

+
302 {
+
303  {
+
304  std::stringstream ss;
+
305  int count = 0;
+
306  for (auto&& var : desc.m_PadList)
+
307  {
+
308  if (count > 0)
+
309  {
+
310  ss << ",";
+
311  }
+
312  ss << "[" << var.first << "," << var.second << "]";
+
313  ++count;
+
314  }
+
315  fn("PadList", ss.str());
+
316  }
+
317  fn("PadValue", std::to_string(desc.m_PadValue));
+
318  fn("PaddingMode", GetPaddingModeAsCString(desc.m_PaddingMode));
+
319 }
+
+

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

+ +
+
+
The documentation for this struct was generated from the following files: +
+
+
constexpr char const * GetPaddingModeAsCString(PaddingMode mode)
Definition: TypesUtils.hpp:159
+ + + + -- cgit v1.2.1