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 <michele.digiorgio@arm.com>
Reviewed-on: https://review.mlplatform.org/c/1457
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Pablo Marquez <pablo.tello@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
diff --git a/src/core/CL/kernels/CLSobel3x3Kernel.cpp b/src/core/CL/kernels/CLSobel3x3Kernel.cpp
index 4439b30..1c2fbb0 100644
--- a/src/core/CL/kernels/CLSobel3x3Kernel.cpp
+++ b/src/core/CL/kernels/CLSobel3x3Kernel.cpp
@@ -139,7 +139,7 @@
             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));
 }