From 553b999ccc4233b163377e0a55e2377614899a3e Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Mon, 3 Sep 2018 12:17:47 +0100 Subject: COMPMID-1517 - Add validate method to CLScale Change-Id: I36b119f27c87e2ce3d82a46089a29e298509772c Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/146625 Tested-by: Jenkins Reviewed-by: Giorgio Arena --- src/runtime/CL/functions/CLScale.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/runtime/CL/functions/CLScale.cpp') diff --git a/src/runtime/CL/functions/CLScale.cpp b/src/runtime/CL/functions/CLScale.cpp index 4ff9763397..f204e644a6 100644 --- a/src/runtime/CL/functions/CLScale.cpp +++ b/src/runtime/CL/functions/CLScale.cpp @@ -50,3 +50,9 @@ void CLScale::configure(ICLTensor *input, ICLTensor *output, InterpolationPolicy } _border_handler.configure(input, _kernel->border_size(), border_mode, constant_border_value); } + +Status CLScale::validate(const ITensorInfo *input, const ITensorInfo *output, InterpolationPolicy policy, BorderMode border_mode, PixelValue constant_border_value, SamplingPolicy sampling_policy) +{ + ARM_COMPUTE_UNUSED(constant_border_value); + return CLScaleKernel::validate(input, output, policy, border_mode, sampling_policy); +} -- cgit v1.2.1