aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NERNNLayer.cpp
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-08-13 16:54:20 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commite3f1bd10e71075f7d8b406698809666e1eb4e7ae (patch)
tree805c2bef95279155aac64466b83c7d047f1bd8e8 /src/runtime/NEON/functions/NERNNLayer.cpp
parent29258e8903050223c9f2a792836517bd533f8f0b (diff)
downloadComputeLibrary-e3f1bd10e71075f7d8b406698809666e1eb4e7ae.tar.gz
COMPMID-1246 Remove unused window iterator from NERNNLayer.
Change-Id: Ia1ab755f85adb602c115f20e384fb459d3f91927 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/143894 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/NEON/functions/NERNNLayer.cpp')
-rw-r--r--src/runtime/NEON/functions/NERNNLayer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NERNNLayer.cpp b/src/runtime/NEON/functions/NERNNLayer.cpp
index f77566a108..f1e57c5983 100644
--- a/src/runtime/NEON/functions/NERNNLayer.cpp
+++ b/src/runtime/NEON/functions/NERNNLayer.cpp
@@ -106,9 +106,7 @@ void NERNNLayer::run()
NEScheduler::get().schedule(&_activation_kernel, Window::DimY);
// copy hidden out to output
- Window hidden_state_window;
Window output_window;
- hidden_state_window.use_tensor_dimensions(_hidden_state->info()->tensor_shape(), Window::DimY);
output_window.use_tensor_dimensions(_output->info()->tensor_shape(), Window::DimY);
Iterator hidden_state_it(_hidden_state, output_window);