From e2c82fee3b6d38f6e79412c78176792b817defd0 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 2 Oct 2017 18:51:47 +0100 Subject: COMPMID-550: Adds support for branches. Change-Id: I778007c9221ce3156400284c4039b90245eb2b7f Reviewed-on: http://mpd-gerrit.cambridge.arm.com/90043 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- arm_compute/graph/CL/CLMap.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'arm_compute/graph/CL/CLMap.h') diff --git a/arm_compute/graph/CL/CLMap.h b/arm_compute/graph/CL/CLMap.h index a205ebcad1..732a1df77f 100644 --- a/arm_compute/graph/CL/CLMap.h +++ b/arm_compute/graph/CL/CLMap.h @@ -29,11 +29,11 @@ namespace arm_compute { -class CLTensor; +class ICLTensor; namespace graph { -class Tensor; +class ITensorObject; /** OpenCL map function */ class CLMap : public arm_compute::IFunction { @@ -43,7 +43,7 @@ public: * @param[in] tensor Tensor to map * @param[in] blocking Flag to specify if the map should be blocking or not (defaults to false) */ - CLMap(Tensor *tensor, bool blocking = false); + CLMap(ITensorObject *tensor, bool blocking = false); /** Prevent instances from being copy constructed */ CLMap(const CLMap &) = delete; /** Prevent instances from being copy assigned */ @@ -57,8 +57,8 @@ public: void run() override; private: - arm_compute::CLTensor *_tensor; /**< Tensor */ - bool _blocking; /**< Blocking flag */ + arm_compute::ICLTensor *_tensor; /**< Tensor */ + bool _blocking; /**< Blocking flag */ }; } // namespace graph } // namespace arm_compute -- cgit v1.2.1