From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- ...ayer_parameters_3_01_views_descriptor_01_4.html | 162 +++++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_views_descriptor_01_4.html (limited to 'Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_views_descriptor_01_4.html') diff --git a/Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_views_descriptor_01_4.html b/Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_views_descriptor_01_4.html new file mode 100644 index 0000000000..5e3821c975 --- /dev/null +++ b/Documentation/structarmnn_1_1_stringify_layer_parameters_3_01_views_descriptor_01_4.html @@ -0,0 +1,162 @@ + + + + + + + +ArmNN: StringifyLayerParameters< ViewsDescriptor > Struct Template Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StringifyLayerParameters< ViewsDescriptor > Struct Template Reference
+
+
+ +

#include <SerializeLayerParameters.hpp>

+ + + + +

+Static Public Member Functions

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

Detailed Description

+

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

+ + +

Definition at line 78 of file SerializeLayerParameters.hpp.

+

Member Function Documentation

+ +

◆ Serialize()

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

Definition at line 181 of file SerializeLayerParameters.cpp.

+ +

References ViewsDescriptor::GetNumDimensions(), ViewsDescriptor::GetNumViews(), ViewsDescriptor::GetOrigins(), ViewsDescriptor::GetViewSizes(), and StringifyLayerParameters< LayerParameter >::Serialize().

+
182 {
183  uint32_t numViews = desc.GetNumViews();
184  uint32_t numDims = desc.GetNumDimensions();
185  for (uint32_t view = 0; view < numViews; ++view) {
186  std::stringstream key;
187  key << "ViewSizes#" << view;
188  std::stringstream value;
189  value << "[";
190  auto viewData = desc.GetViewSizes(view);
191  for (uint32_t dim = 0; dim < numDims; ++dim)
192  {
193  if (dim > 0)
194  {
195  value << ",";
196  }
197  value << viewData[dim];
198  }
199  value << "]";
200  fn(key.str(), value.str());
201  }
203 }
static void Serialize(ParameterStringifyFunction &, const LayerParameter &)
+
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1