aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLIm2ColKernel.cpp
diff options
context:
space:
mode:
authorGian Marco <gianmarco.iodice@arm.com>2017-11-22 14:46:28 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:41:04 +0000
commitd7779da59c5c8f9efd4c45ab646460f2963b520b (patch)
tree7e8cbd5a7a98e594711bb53c904c558b0c3460c8 /src/core/CL/kernels/CLIm2ColKernel.cpp
parentcc441cb2321adefb0fb244b592d32af43766695d (diff)
downloadComputeLibrary-d7779da59c5c8f9efd4c45ab646460f2963b520b.tar.gz
COMPMID-556 - Passed _lws_hint in the run() method where was missing
_lws_hint was missing in the run() method for some ML functions where _config_id was set Change-Id: I0a092372cccaf21f29e4c78340201de1606caab4 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/110250 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@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 6cc45573d8..aee39b2443 100644
--- a/src/core/CL/kernels/CLIm2ColKernel.cpp
+++ b/src/core/CL/kernels/CLIm2ColKernel.cpp
@@ -203,7 +203,7 @@ void CLIm2ColKernel::run_reduced(const Window &window, cl::CommandQueue &queue)
_kernel.setArg<cl_uint>(idx++, _input->info()->dimension(0));
_kernel.setArg<cl_uint>(idx++, _input->info()->dimension(1));
- enqueue(queue, *this, in_slice);
+ enqueue(queue, *this, in_slice, _lws_hint);
}
while(window.slide_window_slice_3D(in_slice) && out_window.slide_window_slice_1D(out_slice));
}