From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- .../_neon_backend_model_context_8hpp_source.xhtml | 121 +++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 21.02/_neon_backend_model_context_8hpp_source.xhtml (limited to '21.02/_neon_backend_model_context_8hpp_source.xhtml') diff --git a/21.02/_neon_backend_model_context_8hpp_source.xhtml b/21.02/_neon_backend_model_context_8hpp_source.xhtml new file mode 100644 index 0000000000..4b6ff30a6b --- /dev/null +++ b/21.02/_neon_backend_model_context_8hpp_source.xhtml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + +ArmNN: src/backends/neon/NeonBackendModelContext.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
NeonBackendModelContext.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 NeonBackendModelContext is used to pass in Neon specific backend ModelOptions. The supported backend
13 /// ModelOptions 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.
17 /// - "NumberOfThreads"\n
18 /// Specify the number of threads used by the CpuAcc backend.
20 {
21 public:
22  NeonBackendModelContext(const ModelOptions& modelOptions);
23 
24  bool IsFastMathEnabled() const;
25 
26  unsigned int GetNumberOfThreads() const;
27 
28 private:
29  bool m_IsFastMathEnabled;
30  unsigned int m_NumberOfThreads;
31 };
32 
33 } // namespace armnn
+
std::vector< BackendOptions > ModelOptions
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+ +
The NeonBackendModelContext is used to pass in Neon specific backend ModelOptions.
+
NeonBackendModelContext(const ModelOptions &modelOptions)
+ +
+
+ + + + -- cgit v1.2.1