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 --- ...2backends_2_i_backend_context_8hpp_source.xhtml | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 21.02/include_2armnn_2backends_2_i_backend_context_8hpp_source.xhtml (limited to '21.02/include_2armnn_2backends_2_i_backend_context_8hpp_source.xhtml') diff --git a/21.02/include_2armnn_2backends_2_i_backend_context_8hpp_source.xhtml b/21.02/include_2armnn_2backends_2_i_backend_context_8hpp_source.xhtml new file mode 100644 index 0000000000..0851244bbc --- /dev/null +++ b/21.02/include_2armnn_2backends_2_i_backend_context_8hpp_source.xhtml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + +ArmNN: include/armnn/backends/IBackendContext.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
IBackendContext.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6 
8 #include <armnn/IRuntime.hpp>
9 #include <memory>
10 
11 namespace armnn
12 {
13 
15 {
16 protected:
18 
19 public:
20  /// Before and after Load network events
21  virtual bool BeforeLoadNetwork(NetworkId networkId) = 0;
22  virtual bool AfterLoadNetwork(NetworkId networkId) = 0;
23 
24  /// Before and after Unload network events
25  virtual bool BeforeUnloadNetwork(NetworkId networkId) = 0;
26  virtual bool AfterUnloadNetwork(NetworkId networkId) = 0;
27 
28  virtual ~IBackendContext() {}
29 };
30 
31 using IBackendContextUniquePtr = std::unique_ptr<IBackendContext>;
32 
34 {
35 public:
36  virtual ~IBackendModelContext() {}
37 };
38 
39 } // namespace armnn
virtual bool AfterUnloadNetwork(NetworkId networkId)=0
+
virtual bool BeforeUnloadNetwork(NetworkId networkId)=0
Before and after Unload network events.
+
virtual bool AfterLoadNetwork(NetworkId networkId)=0
+ +
int NetworkId
Definition: IRuntime.hpp:20
+
Copyright (c) 2021 ARM Limited and Contributors.
+
virtual bool BeforeLoadNetwork(NetworkId networkId)=0
Before and after Load network events.
+ + + + +
std::unique_ptr< IBackendContext > IBackendContextUniquePtr
+ + +
IBackendContext(const IRuntime::CreationOptions &)
+
+
+ + + + -- cgit v1.2.1