From f3aeee133c1c9c98c6828e935cf4f9801fbda9e1 Mon Sep 17 00:00:00 2001 From: steniu01 Date: Thu, 21 Sep 2017 16:27:56 +0100 Subject: COMPMID-417 fix the depthwise conv bug Change-Id: Ica3c26d09f8009240467e0d3a12f585170fbcd44 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/88677 Reviewed-by: Moritz Pflanzer Tested-by: Kaizen --- src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp b/src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp index 9b8a5fdb73..f5502e8d7b 100644 --- a/src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp +++ b/src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp @@ -75,7 +75,7 @@ void CLGEMMMatrixVectorMultiplyKernel::configure(const ICLTensor *input0, const Window win = calculate_max_window(*input0->info(), Steps(num_elems_read_per_iteration)); - AccessWindowRectangle input0_access(input0->info(), 0, 0, border_size().right, border_size().bottom); + AccessWindowRectangle input0_access(input0->info(), 0, 0, num_elems_read_per_iteration, _num_rows_read_per_iteration); AccessWindowHorizontal input1_access(input1->info(), 0, num_elems_read_per_iteration); AccessWindowStatic output_access(_output->info(), 0, 0, _output->info()->dimension(0) + border_x, _output->info()->dimension(1) + border_y); -- cgit v1.2.1