From 9ef361469ef64616c1fdb92d57258ac63a26804a Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Tue, 25 Jan 2022 15:15:34 +0000 Subject: IVGCVSW-6687 Implement ICLTensorProxy * Implement ICLTensorProxy and unit tests * Remove IClImportTensorHandle and use IClTensorHandle to access ICLTensor Signed-off-by: Narumol Prangnawarat Change-Id: I791d0f2c6f8bad841a56e39e196baf0e533c7124 --- src/backends/cl/ClTensorHandle.hpp | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'src/backends/cl/ClTensorHandle.hpp') diff --git a/src/backends/cl/ClTensorHandle.hpp b/src/backends/cl/ClTensorHandle.hpp index 6fccb8d395..f63f1faa07 100644 --- a/src/backends/cl/ClTensorHandle.hpp +++ b/src/backends/cl/ClTensorHandle.hpp @@ -18,18 +18,10 @@ #include #include -namespace armnn -{ - +#include -class IClTensorHandle : public IAclTensorHandle +namespace armnn { -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& memoryGroup) = 0; -}; class ClTensorHandle : public IClTensorHandle { -- cgit v1.2.1