aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEFillArrayKernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/NEFillArrayKernel.cpp')
-rw-r--r--src/core/NEON/kernels/NEFillArrayKernel.cpp6
1 files changed, 1 insertions, 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);
}