aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLIm2ColKernel.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-07-12 12:42:35 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit5b52fe3a4481769adcf42218a3747486cb4e9c14 (patch)
tree947c84d7d257f2c47045245f9aea30b772cdfb0a /src/core/CL/kernels/CLIm2ColKernel.cpp
parent71d9b57aac146ae3ad5648c1308a872cea90070d (diff)
downloadComputeLibrary-5b52fe3a4481769adcf42218a3747486cb4e9c14.tar.gz
COMPMID-1390: OCLGrind and benchmark tests fail for QASYMM8
COMPMID-1392: OCLGrind failures in im2col1x1_stridex1_dchw COMPMID-1395: OCLGrind failures in output_stage_quantized Change-Id: I35504bd1f701316df122be52d458c71bbd7e7909 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139722 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLIm2ColKernel.cpp')
-rw-r--r--src/core/CL/kernels/CLIm2ColKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/kernels/CLIm2ColKernel.cpp b/src/core/CL/kernels/CLIm2ColKernel.cpp
index 06ca005dd5..b1290b8edd 100644
--- a/src/core/CL/kernels/CLIm2ColKernel.cpp
+++ b/src/core/CL/kernels/CLIm2ColKernel.cpp
@@ -262,7 +262,7 @@ CLIm2ColKernel::configure_window(const ICLTensor *input, ICLTensor *output, cons
AccessWindowStatic input_access(input->info(),
-border.left,
-border.top,
- ceil_to_multiple(input_width + border.right, kernel_dims.width),
+ ceil_to_multiple(input_width + border.right, kernel_dims.width * _num_elems_processed_per_iteration),
input_height + border.bottom);
update_window_and_padding(win, input_access);
}