From 399f623e29500e28c34e8a5adb07dd15e7f26c0c Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 29 Jun 2021 15:31:58 +0100 Subject: Port ClGemmLowpOutputStage operator to new interface Signed-off-by: Georgios Pinitas Change-Id: I96630b45887eaba16ef358b95f3d9ac0b9045157 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5882 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h') diff --git a/arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h b/arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h index e85f2db8a9..6ec7b71f7d 100644 --- a/arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h +++ b/arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h @@ -112,10 +112,8 @@ public: void run() override; private: - std::unique_ptr _kernel; - const ICLTensor *_input; - const ICLTensor *_bias; - ICLTensor *_output; + struct Impl; + std::unique_ptr _impl; }; } // namespace arm_compute #endif /*ARM_COMPUTE_CLGEMMLOWPOUTPUTSTAGE_H */ -- cgit v1.2.1