From fb14ebbd68e04876809145296af96f6f41857418 Mon Sep 17 00:00:00 2001 From: James Ward Date: Thu, 26 Nov 2020 11:08:12 +0000 Subject: IVGCVSW-5348 Update Doxygen Docu * Update Doxygen Documentation for 20.11 release Signed-off-by: James Ward Change-Id: Ib47edac7923a642a277b1169d1085e5622021dc0 --- 20.11/_cl_backend_model_context_8hpp_source.xhtml | 120 ++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 20.11/_cl_backend_model_context_8hpp_source.xhtml (limited to '20.11/_cl_backend_model_context_8hpp_source.xhtml') diff --git a/20.11/_cl_backend_model_context_8hpp_source.xhtml b/20.11/_cl_backend_model_context_8hpp_source.xhtml new file mode 100644 index 0000000000..7d9573e996 --- /dev/null +++ b/20.11/_cl_backend_model_context_8hpp_source.xhtml @@ -0,0 +1,120 @@ + + + + + + + + + + + + + +ArmNN: src/backends/cl/ClBackendModelContext.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ClBackendModelContext.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6 
8 
9 namespace armnn
10 {
11 
12 /// The ClBackendModelContext is used to pass in CL specific backend ModelOptions. The supported backend ModelOptions
13 /// are:
14 /// - "FastMathEnabled"\n
15 /// Using the fast_math flag can lead to performance improvements in fp32 and fp16 layers but may result in\n
16 /// results with reduced or different precision. The fast_math flag will not have any effect on int8 performance.
18 {
19 public:
20  ClBackendModelContext(const ModelOptions& modelOptions);
21 
22  bool IsFastMathEnabled() const;
23 
24 private:
25  bool m_IsFastMathEnabled;
26 };
27 
28 } // namespace armnn
+
std::vector< BackendOptions > ModelOptions
+
Copyright (c) 2020 ARM Limited.
+ + +
ClBackendModelContext(const ModelOptions &modelOptions)
+
The ClBackendModelContext is used to pass in CL specific backend ModelOptions.
+
+
+ + + + -- cgit v1.2.1