aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLScale.cpp
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2018-09-03 12:17:47 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit553b999ccc4233b163377e0a55e2377614899a3e (patch)
tree77ab94ad2acac7d484555007a40a11a252b53d56 /src/runtime/CL/functions/CLScale.cpp
parentaa6a04a56f21ab8de23b24c5f9ee7cafeaef8320 (diff)
downloadComputeLibrary-553b999ccc4233b163377e0a55e2377614899a3e.tar.gz
COMPMID-1517 - Add validate method to CLScale
Change-Id: I36b119f27c87e2ce3d82a46089a29e298509772c Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/146625 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com>
Diffstat (limited to 'src/runtime/CL/functions/CLScale.cpp')
-rw-r--r--src/runtime/CL/functions/CLScale.cpp6
1 files changed, 6 insertions, 0 deletions
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);
+}