aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/IClTensorHandle.hpp
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2023-01-12 11:17:03 +0000
committerCathal Corbett <cathal.corbett@arm.com>2023-01-12 11:18:21 +0000
commitd69c1c595375b904a7f19f562ac1d54098184b4e (patch)
treeb2c4980eb367aa160282aae5c2deda8ef19682de /src/backends/aclCommon/IClTensorHandle.hpp
parent267c985a6322fbc1efa22ba44188ac867537f1b1 (diff)
downloadarmnn-d69c1c595375b904a7f19f562ac1d54098184b4e.tar.gz
Merge 'main' onto 'experimental/GpuFsa'.
* I6c71be11e9b73694747b27fe9febab8d9669b4d4 Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: Iccaf50e2484559979d801ee9d0e130e848554733
Diffstat (limited to 'src/backends/aclCommon/IClTensorHandle.hpp')
-rw-r--r--src/backends/aclCommon/IClTensorHandle.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/backends/aclCommon/IClTensorHandle.hpp b/src/backends/aclCommon/IClTensorHandle.hpp
new file mode 100644
index 0000000000..48cf5f57d6
--- /dev/null
+++ b/src/backends/aclCommon/IClTensorHandle.hpp
@@ -0,0 +1,22 @@
+//
+// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+#pragma once
+
+#include <arm_compute/core/CL/ICLTensor.h>
+#include <arm_compute/runtime/MemoryGroup.h>
+
+namespace armnn
+{
+
+class IClTensorHandle : public IAclTensorHandle
+{
+public:
+ virtual arm_compute::ICLTensor& GetTensor() = 0;
+ virtual arm_compute::ICLTensor const& GetTensor() const = 0;
+ virtual arm_compute::DataType GetDataType() const = 0;
+ virtual void SetMemoryGroup(const std::shared_ptr<arm_compute::IMemoryGroup>& memoryGroup) = 0;
+};
+
+} //namespace armnn \ No newline at end of file