From a983e4699082a0b1ef685bab7354f2ad9cd37a44 Mon Sep 17 00:00:00 2001 From: Colm Donelan Date: Wed, 20 May 2020 16:12:19 +0100 Subject: Updating Doxygen documentation for 20.05 release. Change-Id: I4d624343ed5fd6ae269c3d53532903084508fd14 Signed-off-by: Colm Donelan --- 20.05/_internal_types_8cpp_source.xhtml | 120 ++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 20.05/_internal_types_8cpp_source.xhtml (limited to '20.05/_internal_types_8cpp_source.xhtml') diff --git a/20.05/_internal_types_8cpp_source.xhtml b/20.05/_internal_types_8cpp_source.xhtml new file mode 100644 index 0000000000..c1840b9920 --- /dev/null +++ b/20.05/_internal_types_8cpp_source.xhtml @@ -0,0 +1,120 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/InternalTypes.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
InternalTypes.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "InternalTypes.hpp"
7 
9 
10 namespace armnn
11 {
12 
14 {
15  switch (type)
16  {
17 #define X(name) case LayerType::name: return #name;
19 #undef X
20  default:
21  ARMNN_ASSERT_MSG(false, "Unknown layer type");
22  return "Unknown";
23  }
24 }
25 
26 }
#define LIST_OF_LAYER_TYPE
This list uses X macro technique.
+
Copyright (c) 2020 ARM Limited.
+ +
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
+
char const * GetLayerTypeAsCString(LayerType type)
+ + +
+
+ + + + -- cgit v1.2.1