aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/ClBackendContext.hpp
blob: 3df403efc512473d936717916c16122665e64ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include <backends/IBackendContext.hpp>

namespace armnn
{

class ClBackendContext : public IBackendContext
{
public:
    ClBackendContext(const IRuntime::CreationOptions& options);
    ~ClBackendContext() override;

    struct ContextControlWrapper;
private:
    std::shared_ptr<ContextControlWrapper> m_ContextControl;
};

} // namespace armnn