From e3f1bd10e71075f7d8b406698809666e1eb4e7ae Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Mon, 13 Aug 2018 16:54:20 +0100 Subject: 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 Tested-by: Jenkins --- src/runtime/NEON/functions/NERNNLayer.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/runtime/NEON/functions/NERNNLayer.cpp') 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); -- cgit v1.2.1