aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/ClBackendContext.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/cl/ClBackendContext.hpp')
-rw-r--r--src/backends/cl/ClBackendContext.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/backends/cl/ClBackendContext.hpp b/src/backends/cl/ClBackendContext.hpp
new file mode 100644
index 0000000000..3df403efc5
--- /dev/null
+++ b/src/backends/cl/ClBackendContext.hpp
@@ -0,0 +1,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 \ No newline at end of file