From 690599df6f933ed2ca46496261fb441827324b03 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 28 Feb 2020 11:28:46 +0000 Subject: COMPMID-3148: Remove padding from NEFillArrayKernel Change-Id: Idc7e8236fe12286d8fc6584a7572564be924670e Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2805 Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/kernels/NEFillArrayKernel.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/core/NEON/kernels/NEFillArrayKernel.cpp b/src/core/NEON/kernels/NEFillArrayKernel.cpp index c6c6c452b7..e59d75d5c4 100644 --- a/src/core/NEON/kernels/NEFillArrayKernel.cpp +++ b/src/core/NEON/kernels/NEFillArrayKernel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2018 ARM Limited. + * Copyright (c) 2016-2020 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -47,13 +47,9 @@ void NEFillArrayKernel::configure(const IImage *input, uint8_t threshold, IKeyPo _threshold = threshold; constexpr unsigned int num_elems_processed_per_iteration = 1; - constexpr unsigned int num_elems_read_per_iteration = 1; // Configure kernel window Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration)); - - update_window_and_padding(win, AccessWindowHorizontal(input->info(), 0, num_elems_read_per_iteration)); - INEKernel::configure(win); } -- cgit v1.2.1