From 47ae441b320c0a9f79f8e6036a0b12a1bf68f9ca Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Mon, 5 Oct 2020 10:37:02 +0100 Subject: COMPMID-3816: Nightly failure: neon_scale example and benchmark Change-Id: I225b3f9b170959ad8c8a462cb42668671b1577e9 Signed-off-by: Manuel Bottini Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4080 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- examples/neon_scale.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'examples/neon_scale.cpp') diff --git a/examples/neon_scale.cpp b/examples/neon_scale.cpp index ac9d0620ea..f120ea7f96 100644 --- a/examples/neon_scale.cpp +++ b/examples/neon_scale.cpp @@ -60,7 +60,13 @@ public: dst.allocator()->init(dst_tensor_info); // Configure Scale function object: - scale.configure(&src, &dst, ScaleKernelInfo{ InterpolationPolicy::NEAREST_NEIGHBOR, BorderMode::UNDEFINED }); + scale.configure(&src, &dst, ScaleKernelInfo{ + InterpolationPolicy::NEAREST_NEIGHBOR, + BorderMode::UNDEFINED, + PixelValue(), + SamplingPolicy::CENTER, + false + }); // Allocate all the images src.allocator()->allocate(); -- cgit v1.2.1