From c226853f80d53619a2f49e646635e04ee0885c3b Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 9 Oct 2020 11:52:10 +0100 Subject: COMPMID-3794: Fix window loops causing performance regression Signed-off-by: Michalis Spyrou Change-Id: Id4d95c6ce5fed91bb079b8bfe1abceedefd20c97 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4117 Reviewed-by: Sheri Zhang Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/kernels/NEPoolingLayerKernel.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/core/NEON/kernels/NEPoolingLayerKernel.cpp') diff --git a/src/core/NEON/kernels/NEPoolingLayerKernel.cpp b/src/core/NEON/kernels/NEPoolingLayerKernel.cpp index 1310ef3521..397eae94ea 100644 --- a/src/core/NEON/kernels/NEPoolingLayerKernel.cpp +++ b/src/core/NEON/kernels/NEPoolingLayerKernel.cpp @@ -1316,7 +1316,7 @@ void NEPoolingLayerKernel::pooling2_f16_nhwc_maxpool_indices(const Window &windo (_input->info()->strides_in_bytes().z()); int x_off = window_start_x; - for(; x_off < (window_end_x - window_step_x); x_off += window_step_x) + for(; x_off <= (window_end_x - window_step_x); x_off += window_step_x) { const auto in_x0_ptr = reinterpret_cast(input.ptr() + in_x0_offset) + x_off; const auto in_x1_ptr = reinterpret_cast(input.ptr() + in_x1_offset) + x_off; @@ -1432,7 +1432,7 @@ void NEPoolingLayerKernel::poolingMxN_f16_nhwc(const Window &window_input, const const int pool_end_x = std::min(pool_size_x, window_input.y().end() + pool_limit_x); int x_off = window_start_x; - for(; x_off < (window_end_x - window_step_x); x_off += window_step_x) + for(; x_off <= (window_end_x - window_step_x); x_off += window_step_x) { if(pooling_type != PoolingType::MAX) { @@ -1943,7 +1943,7 @@ void NEPoolingLayerKernel::poolingMxN_f32_nhwc(const Window &window_input, const const int pool_end_x = std::min(pool_size_x, window_input.y().end() + pool_limit_x); int x_off = window_start_x; - for(; x_off < (window_end_x - window_step_x); x_off += window_step_x) + for(; x_off <= (window_end_x - window_step_x); x_off += window_step_x) { if(pooling_type != PoolingType::MAX) { @@ -2113,7 +2113,7 @@ void NEPoolingLayerKernel::pooling2_f32_nhwc_maxpool_indices(const Window &windo (_input->info()->strides_in_bytes().z()); int x_off = window_start_x; - for(; x_off < (window_end_x - window_step_x); x_off += window_step_x) + for(; x_off <= (window_end_x - window_step_x); x_off += window_step_x) { const auto in_x0_ptr = reinterpret_cast(input.ptr() + in_x0_offset); const auto in_x1_ptr = reinterpret_cast(input.ptr() + in_x1_offset); @@ -2337,7 +2337,7 @@ void NEPoolingLayerKernel::poolingMxN_q8_nhwc(const Window &window_input, const const int pool_end_x = std::min(pool_size_x, window_input.y().end() + pool_limit_x); int x_off = window_start_x; - for(; x_off < (window_end_x - window_step_x); x_off += window_step_x) + for(; x_off <= (window_end_x - window_step_x); x_off += window_step_x) { if(pooling_type != PoolingType::MAX) { -- cgit v1.2.1