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/CLSobel7x7Kernel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/CL/kernels/CLSobel7x7Kernel.cpp') diff --git a/src/core/CL/kernels/CLSobel7x7Kernel.cpp b/src/core/CL/kernels/CLSobel7x7Kernel.cpp index cd221fc4aa..8c0b6a239f 100644 --- a/src/core/CL/kernels/CLSobel7x7Kernel.cpp +++ b/src/core/CL/kernels/CLSobel7x7Kernel.cpp @@ -140,7 +140,7 @@ void CLSobel7x7HorKernel::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)); } @@ -255,7 +255,7 @@ void CLSobel7x7VertKernel::run(const Window &window, cl::CommandQueue &queue) _kernel.setArg(idx++, 0 /*dummy*/); - enqueue(queue, *this, slice); + enqueue(queue, *this, slice, lws_hint()); } while(window.slide_window_slice_2D(slice)); } -- cgit v1.2.1