aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsteniu01 <steven.niu@arm.com>2017-09-21 16:27:56 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitf3aeee133c1c9c98c6828e935cf4f9801fbda9e1 (patch)
treec2ba91ed7cadb4a428e40861f48491f14e9e591a /src
parent2a07e184f7b359d13aa6cacfdc6431f9b191ef0c (diff)
downloadComputeLibrary-f3aeee133c1c9c98c6828e935cf4f9801fbda9e1.tar.gz
COMPMID-417 fix the depthwise conv bug
Change-Id: Ica3c26d09f8009240467e0d3a12f585170fbcd44 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/88677 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'src')
-rw-r--r--src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp2
1 files changed, 1 insertions, 1 deletions
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);