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 --- ...ayer_parameters_3_01_mean_descriptor_01_4.xhtml | 175 +++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 20.02/structarmnn_1_1_stringify_layer_parameters_3_01_mean_descriptor_01_4.xhtml (limited to '20.02/structarmnn_1_1_stringify_layer_parameters_3_01_mean_descriptor_01_4.xhtml') diff --git a/20.02/structarmnn_1_1_stringify_layer_parameters_3_01_mean_descriptor_01_4.xhtml b/20.02/structarmnn_1_1_stringify_layer_parameters_3_01_mean_descriptor_01_4.xhtml new file mode 100644 index 0000000000..13804f4ffc --- /dev/null +++ b/20.02/structarmnn_1_1_stringify_layer_parameters_3_01_mean_descriptor_01_4.xhtml @@ -0,0 +1,175 @@ + + + + + + + + + + + + + +ArmNN: StringifyLayerParameters< MeanDescriptor > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StringifyLayerParameters< MeanDescriptor > Struct Template Reference
+
+
+ +

#include <SerializeLayerParameters.hpp>

+ + + + +

+Static Public Member Functions

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

Detailed Description

+

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

+ + +

Definition at line 133 of file SerializeLayerParameters.hpp.

+

Member Function Documentation

+ +

◆ Serialize()

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

Definition at line 361 of file SerializeLayerParameters.cpp.

+ +

References MeanDescriptor::m_Axis, and MeanDescriptor::m_KeepDims.

+
362 {
363  {
364  std::stringstream ss;
365  int count = 0;
366  for (auto&& var : desc.m_Axis)
367  {
368  if (count > 0)
369  {
370  ss << ",";
371  }
372  ss << var;
373  ++count;
374  }
375  fn("Axis", ss.str());
376  }
377  fn("KeepDims", (desc.m_KeepDims ? "true" : "false"));
378 }
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1