From 484e7b3724c0e77751b5bed05180271fd5376e5d Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Wed, 9 Aug 2017 11:43:18 +0100 Subject: COMPMID-417: Cleanup NEON FullyConnectedLayer Change-Id: Ie02a0a1a28ca2771e29a5e6552242caf0f6db1cf Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83555 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp') diff --git a/src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp b/src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp index 8381dd8a73..8a2a481bde 100644 --- a/src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp +++ b/src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp @@ -23,6 +23,7 @@ */ #include "arm_compute/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.h" +#include "arm_compute/core/AccessWindowStatic.h" #include "arm_compute/core/AccessWindowTranspose.h" #include "arm_compute/core/Error.h" #include "arm_compute/core/Helpers.h" @@ -1462,7 +1463,7 @@ void NEGEMMMatrixMultiplyKernel::configure(const ITensor *input0, const ITensor AccessWindowHorizontal output_access(output->info(), 0, num_elems_processed_per_iteration_x); update_window_and_padding(win, - AccessWindowHorizontal(input0->info(), 0, num_elems_processed_per_iteration_x), + AccessWindowStatic(input0->info(), 0, 0, input0->info()->tensor_shape().x(), 1), AccessWindowHorizontal(input1->info(), 0, num_elems_processed_per_iteration_x), output_access); -- cgit v1.2.1