From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- latest/_i_backend_context_8hpp_source.html | 169 +++++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 latest/_i_backend_context_8hpp_source.html (limited to 'latest/_i_backend_context_8hpp_source.html') diff --git a/latest/_i_backend_context_8hpp_source.html b/latest/_i_backend_context_8hpp_source.html new file mode 100644 index 0000000000..cd990ac60b --- /dev/null +++ b/latest/_i_backend_context_8hpp_source.html @@ -0,0 +1,169 @@ + + + + + + + + +Arm NN: include/armnn/backends/IBackendContext.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
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  // After Enqueue workload events
+
29  virtual bool AfterEnqueueWorkload(NetworkId networkId) = 0;
+
30 
+
31  virtual ~IBackendContext() {}
+
32 };
+
33 
+
34 using IBackendContextUniquePtr = std::unique_ptr<IBackendContext>;
+
35 
+ +
37 {
+
38 public:
+
39  virtual ~IBackendModelContext() {}
+
40 };
+
41 
+
42 } // namespace armnn
+
+
+
virtual bool AfterLoadNetwork(NetworkId networkId)=0
+ +
virtual bool BeforeLoadNetwork(NetworkId networkId)=0
Before and after Load network events.
+ +
virtual bool AfterUnloadNetwork(NetworkId networkId)=0
+ +
std::unique_ptr< IBackendContext > IBackendContextUniquePtr
+
int NetworkId
Definition: IRuntime.hpp:35
+
IBackendContext(const IRuntime::CreationOptions &)
+ +
virtual bool BeforeUnloadNetwork(NetworkId networkId)=0
Before and after Unload network events.
+ + + +
Copyright (c) 2021 ARM Limited and Contributors.
+
virtual bool AfterEnqueueWorkload(NetworkId networkId)=0
+ + + + -- cgit v1.2.1