aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-02-05 17:31:38 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:46:07 +0000
commitf75ab3fb8a1a2a617499c41f8d06e63174165012 (patch)
tree892ea3f816fc1d20d020c8a39bb9e1ce39effdf7 /src
parent5ae9b694e5d154a2ab3ec0d448394eb5de49368e (diff)
downloadComputeLibrary-f75ab3fb8a1a2a617499c41f8d06e63174165012.tar.gz
COMPMID-888 Valgrind invalid read in NEGEMVAArch64Kernel
Change-Id: I470f244718571e32ac55062b2b62fd0f6996efc6 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/118940 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src')
-rw-r--r--src/core/NEON/kernels/arm64/NEGEMVAArch64Kernel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/NEON/kernels/arm64/NEGEMVAArch64Kernel.cpp b/src/core/NEON/kernels/arm64/NEGEMVAArch64Kernel.cpp
index 07950f7c3e..163014b04f 100644
--- a/src/core/NEON/kernels/arm64/NEGEMVAArch64Kernel.cpp
+++ b/src/core/NEON/kernels/arm64/NEGEMVAArch64Kernel.cpp
@@ -72,9 +72,9 @@ void NEGEMVAArch64Kernel::internal_configure(const ITensor *input0, const ITenso
// Configure kernel window
Window win = calculate_max_window(*output->info());
- AccessWindowRectangle output_access(output->info(), 0, 0, 12, 8);
+ AccessWindowRectangle output_access(output->info(), 0, 0, 12, 1);
- const int input0_access_end = ceil_to_multiple(input0->info()->tensor_shape().x(), 8);
+ const int input0_access_end = ceil_to_multiple(input0->info()->tensor_shape().x(), 12);
const int input1_access_end = ceil_to_multiple(input1->info()->tensor_shape().x(), 12);
update_window_and_padding(win,