From 6b9f388f719dc9ff1181c9a43a41140f19e15ec8 Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Mon, 1 Jul 2019 16:37:04 +0100 Subject: COMPMID-2336: Fix enable tuning of kernels targeted in COMPUTE-10611 Commit fffbdbcc52 added config_id to some CL kernels but did not provide lws_hint() to the enqueue method. Change-Id: I27ba5f39e76e22441c5a3deb3e80d4756189b109 Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/1457 Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez Comments-Addressed: Arm Jenkins --- src/core/CL/kernels/CLGaussianPyramidKernel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/CL/kernels/CLGaussianPyramidKernel.cpp') diff --git a/src/core/CL/kernels/CLGaussianPyramidKernel.cpp b/src/core/CL/kernels/CLGaussianPyramidKernel.cpp index 27b73b6d32..5153396880 100644 --- a/src/core/CL/kernels/CLGaussianPyramidKernel.cpp +++ b/src/core/CL/kernels/CLGaussianPyramidKernel.cpp @@ -132,7 +132,7 @@ void CLGaussianPyramidHorKernel::run(const Window &window, cl::CommandQueue &que unsigned int idx = 0; add_2D_tensor_argument(idx, _input, slice_in); add_2D_tensor_argument(idx, _output, slice_out); - enqueue(queue, *this, slice_out); + enqueue(queue, *this, slice_out, lws_hint()); } while(win_in.slide_window_slice_2D(slice_in) && win_out.slide_window_slice_2D(slice_out)); } @@ -229,7 +229,7 @@ void CLGaussianPyramidVertKernel::run(const Window &window, cl::CommandQueue &qu unsigned int idx = 0; add_2D_tensor_argument(idx, _input, slice_in); add_2D_tensor_argument(idx, _output, slice_out); - enqueue(queue, *this, slice_out); + enqueue(queue, *this, slice_out, lws_hint()); } while(win_in.slide_window_slice_2D(slice_in) && win_out.slide_window_slice_2D(slice_out)); } -- cgit v1.2.1