aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLScale.cpp
diff options
context:
space:
mode:
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);
+}