aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-08-11 15:33:30 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit768e9f180f4082a713a2eb9f3b98911c767d570b (patch)
tree2ebfab5530384e05b7ab695124e99380fad738b9 /src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp
parent69d3341e6903c1ea87c46e39d6d3e64b2a0d5b4e (diff)
downloadComputeLibrary-768e9f180f4082a713a2eb9f3b98911c767d570b.tar.gz
COMPMID-417: Cleanup CL FullyConnectedLayer
Change-Id: Ic7191be1f136c6aad4037cf2ec4bc6d7d0e440d3 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83713 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp')
-rw-r--r--src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp b/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp
index c65b9e0e1a..39526a23e1 100644
--- a/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp
+++ b/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp
@@ -103,9 +103,9 @@ void CLGEMMMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTen
Window win = calculate_max_window(*output->info(), Steps(num_elems_processed_per_iteration_x));
- AccessWindowRectangle input0_access(input0->info(), 0, 0, num_elems_processed_per_iteration_x, 1);
- AccessWindowRectangle input1_access(input1->info(), 0, 0, num_elems_processed_per_iteration_x, 1);
- AccessWindowRectangle output_access(output->info(), 0, 0, num_elems_processed_per_iteration_x, 1);
+ AccessWindowStatic input0_access(input0->info(), 0, 0, input0->info()->tensor_shape().x(), 1);
+ AccessWindowHorizontal input1_access(input1->info(), 0, num_elems_processed_per_iteration_x);
+ AccessWindowHorizontal output_access(output->info(), 0, num_elems_processed_per_iteration_x);
update_window_and_padding(win, input0_access, input1_access, output_access);