ArmNN
 25.11
Loading...
Searching...
No Matches
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
9
10#include <memory>
11#include <vector>
12#include <functional>
13
14namespace armnn
15{
16
17using CompiledBlobDeleter = std::function<void(const void*)>;
18using CompiledBlobPtr = std::unique_ptr<void, CompiledBlobDeleter>;
19
21{
22public:
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::function< void(const void *)> CompiledBlobDeleter
Definition INetwork.hpp:342
std::unique_ptr< void, CompiledBlobDeleter > CompiledBlobPtr
Definition INetwork.hpp:343