From 6f7585b21a13f4792ef1a55ac943997491ba8aec Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Mon, 4 May 2020 16:44:28 +0100 Subject: COMPMID-3441: Nightly failed due to NEScale QASYMM8_SIGNED output wrong result Change-Id: I4a97523408f44c509ba0f6bf180c56ea33b964cf Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3138 Tested-by: Arm Jenkins Reviewed-by: Sheri Zhang Comments-Addressed: Arm Jenkins --- src/core/NEON/kernels/NEScaleKernel.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src') diff --git a/src/core/NEON/kernels/NEScaleKernel.cpp b/src/core/NEON/kernels/NEScaleKernel.cpp index 47a02d77c5..4f2f925c3c 100644 --- a/src/core/NEON/kernels/NEScaleKernel.cpp +++ b/src/core/NEON/kernels/NEScaleKernel.cpp @@ -25,20 +25,12 @@ #include "arm_compute/core/AccessWindowStatic.h" #include "arm_compute/core/CPP/Validate.h" -#include "arm_compute/core/Coordinates.h" -#include "arm_compute/core/Error.h" #include "arm_compute/core/Helpers.h" -#include "arm_compute/core/ITensor.h" #include "arm_compute/core/NEON/wrapper/wrapper.h" -#include "arm_compute/core/TensorInfo.h" -#include "arm_compute/core/Utils.h" -#include "arm_compute/core/Validate.h" #include "arm_compute/core/Window.h" #include "arm_compute/core/utils/misc/Utility.h" #include -#include -#include namespace arm_compute { @@ -724,7 +716,7 @@ void NEScaleKernel::scale_bilinear_nchw(const Window &window) const auto offsets_ptr = reinterpret_cast(offsets.ptr()); const auto dx_ptr = reinterpret_cast(dx.ptr()); const auto dy_ptr = reinterpret_cast(dy.ptr()); - const auto in_ptr = reinterpret_cast(in.ptr()); + const auto in_ptr = reinterpret_cast(in.ptr()); const int in_yi = std::floor((id.y() + _sampling_offset) * hr - _sampling_offset); const int offset_row = in_yi * in_stide_in_bytes; -- cgit v1.2.1