From 96becb7e4f5f510344c3850278a706d63a564fc4 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 16 Jun 2020 12:41:49 +0100 Subject: Revert "IVGCVSW-3726 Upload ArmNN Doxygen files" This reverts commit de36e4a9c299028e792c3a5bd99ad0816d806077. Signed-off-by: Jan Eilers Change-Id: Idbf20c12ea07583ca552d7cc7fb517fbadc73fff --- ...layer_parameters_3_01_pad_descriptor_01_4.xhtml | 175 --------------------- 1 file changed, 175 deletions(-) delete mode 100644 Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml (limited to 'Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml') diff --git a/Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml b/Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml deleted file mode 100644 index 7161904cca..0000000000 --- a/Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - - - - - -ArmNN: StringifyLayerParameters< PadDescriptor > Struct Template Reference - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
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 138 of file SerializeLayerParameters.hpp.

-

Member Function Documentation

- -

◆ Serialize()

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

Definition at line 380 of file SerializeLayerParameters.cpp.

- -

References PadDescriptor::m_PadList, and PadDescriptor::m_PadValue.

-
381 {
382  {
383  std::stringstream ss;
384  int count = 0;
385  for (auto&& var : desc.m_PadList)
386  {
387  if (count > 0)
388  {
389  ss << ",";
390  }
391  ss << "[" << var.first << "," << var.second << "]";
392  ++count;
393  }
394  fn("PadList", ss.str());
395  }
396  fn("PadValue", std::to_string(desc.m_PadValue));
397 }
-
-
-
The documentation for this struct was generated from the following files: -
-
- - - - -- cgit v1.2.1