// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include namespace armnn { class ClBackendContext : public IBackendContext { public: ClBackendContext(const IRuntime::CreationOptions& options); ~ClBackendContext() override; struct ContextControlWrapper; private: std::shared_ptr m_ContextControl; }; } // namespace armnn