aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-06-29 15:31:58 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-06-30 15:54:14 +0000
commit399f623e29500e28c34e8a5adb07dd15e7f26c0c (patch)
tree8ba1e1de51f61a13e8db94a8bd6074770c5c4938 /arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h
parentc63b722591ff23c8c6fe5fb8ef8c8516d40f03aa (diff)
downloadComputeLibrary-399f623e29500e28c34e8a5adb07dd15e7f26c0c.tar.gz
Port ClGemmLowpOutputStage operator to new interface
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: I96630b45887eaba16ef358b95f3d9ac0b9045157 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5882 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h6
1 files changed, 2 insertions, 4 deletions
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<ICLKernel> _kernel;
- const ICLTensor *_input;
- const ICLTensor *_bias;
- ICLTensor *_output;
+ struct Impl;
+ std::unique_ptr<Impl> _impl;
};
} // namespace arm_compute
#endif /*ARM_COMPUTE_CLGEMMLOWPOUTPUTSTAGE_H */