blob: 3df403efc512473d936717916c16122665e64ad5 [file] [log] [blame]
David Beckd4dfa682018-10-24 17:09:46 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#pragma once
6
7#include <backends/IBackendContext.hpp>
8
9namespace armnn
10{
11
12class ClBackendContext : public IBackendContext
13{
14public:
15 ClBackendContext(const IRuntime::CreationOptions& options);
16 ~ClBackendContext() override;
17
18 struct ContextControlWrapper;
19private:
20 std::shared_ptr<ContextControlWrapper> m_ContextControl;
21};
22
23} // namespace armnn