ArmNN
 22.05
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 } // namespace armnn
virtual std::vector< CompiledBlobPtr > CompileNetwork()=0
Copyright (c) 2021 ARM Limited and Contributors.
std::unique_ptr< void, CompiledBlobDeleter > CompiledBlobPtr
Definition: INetwork.hpp:245
std::function< void(const void *)> CompiledBlobDeleter
Definition: INetwork.hpp:244