From 0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 19 Mar 2020 17:03:14 +0000 Subject: Creating gh-pages documentation for ArmNN Signed-off-by: Jim Flynn --- .../_i_subgraph_view_converter_8hpp_source.xhtml | 121 +++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 Documentation/_i_subgraph_view_converter_8hpp_source.xhtml (limited to 'Documentation/_i_subgraph_view_converter_8hpp_source.xhtml') diff --git a/Documentation/_i_subgraph_view_converter_8hpp_source.xhtml b/Documentation/_i_subgraph_view_converter_8hpp_source.xhtml new file mode 100644 index 0000000000..7e39528b60 --- /dev/null +++ b/Documentation/_i_subgraph_view_converter_8hpp_source.xhtml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/ISubgraphViewConverter.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ISubgraphViewConverter.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <armnn/Deprecated.hpp>
9 
10 #include <memory>
11 #include <vector>
12 #include <functional>
13 
14 namespace armnn
15 {
16 
17 using CompiledBlobDeleter = std::function<void(const void*)>;
18 using CompiledBlobPtr = std::unique_ptr<void, CompiledBlobDeleter>;
19 
21 {
22 public:
24 
25  virtual std::vector<CompiledBlobPtr> CompileNetwork() = 0;
26 };
27 
28 ///
29 /// Old ISubGraphConverter definition kept for backward compatibility only.
30 ///
31 using ISubGraphConverter ARMNN_DEPRECATED_MSG("This type is no longer supported") = ISubgraphViewConverter;
32 
33 } // namespace armnn
virtual std::vector< CompiledBlobPtr > CompileNetwork()=0
+
std::function< void(const void *)> CompiledBlobDeleter
+
Copyright (c) 2020 ARM Limited.
+ + +
std::unique_ptr< void, CompiledBlobDeleter > CompiledBlobPtr
+
#define ARMNN_DEPRECATED_MSG(message)
Definition: Deprecated.hpp:43
+ +
+
+ + + + -- cgit v1.2.1