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/CLSobel3x3Kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/CL/kernels/CLSobel3x3Kernel.cpp') diff --git a/src/core/CL/kernels/CLSobel3x3Kernel.cpp b/src/core/CL/kernels/CLSobel3x3Kernel.cpp index 4439b3073c..1c2fbb0176 100644 --- a/src/core/CL/kernels/CLSobel3x3Kernel.cpp +++ b/src/core/CL/kernels/CLSobel3x3Kernel.cpp @@ -139,7 +139,7 @@ void CLSobel3x3Kernel::run(const Window &window, cl::CommandQueue &queue) add_2D_tensor_argument(idx, _output_y, slice); } - enqueue(queue, *this, slice); + enqueue(queue, *this, slice, lws_hint()); } while(window.slide_window_slice_2D(slice)); } -- cgit v1.2.1