aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/gpu/cl/operators/ClScale.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2021-08-19 13:04:56 +0100
committerGiorgio Arena <giorgio.arena@arm.com>2021-08-23 13:33:31 +0000
commit511771fbe0a74e6d9dfd37ba9b4926a8315ec7aa (patch)
treee2296560f37935232d482982d025e148f1c6c61e /src/runtime/gpu/cl/operators/ClScale.h
parent19884630c37ae9de2f65a88ea2cda5630a551bad (diff)
downloadComputeLibrary-511771fbe0a74e6d9dfd37ba9b4926a8315ec7aa.tar.gz
Remove padding from ClScaleKernel
- Merge quantized kernels with fp for bilinear interpolation (both NCHW and NHWC) - Pass dimensions at compile time rather than at run time - Use tile-based approach to rework the NCHW kernels - Remove unused functions/files Resolve COMPMID-4723 Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Change-Id: Ifcdf02beb9daa9f318395751b3c85eb2fe874082 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6138 Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'src/runtime/gpu/cl/operators/ClScale.h')
-rw-r--r--src/runtime/gpu/cl/operators/ClScale.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/runtime/gpu/cl/operators/ClScale.h b/src/runtime/gpu/cl/operators/ClScale.h
index 905c43a41c..0ff78640f7 100644
--- a/src/runtime/gpu/cl/operators/ClScale.h
+++ b/src/runtime/gpu/cl/operators/ClScale.h
@@ -34,7 +34,6 @@ namespace opencl
{
/** Basic function to simulate a scale layer. This function calls the following OpenCL kernels:
*
- * -# @ref CLFillBorderKernel (executed if padding size is different from zero)
* -# @ref kernels::ClScaleKernel
*/
class ClScale : public IClOperator
@@ -61,9 +60,6 @@ public:
// Inherited method overridden
void run(ITensorPack &tensors) override;
-
-protected:
- std::unique_ptr<ICLKernel> _border_handler{ nullptr };
};
} // namespace opencl
} // namespace arm_compute