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/CLColorConvertKernel.cpp b/src/core/CL/kernels/CLColorConvertKernel.cpp
index c32c08f..f3b9328 100644
--- a/src/core/CL/kernels/CLColorConvertKernel.cpp
+++ b/src/core/CL/kernels/CLColorConvertKernel.cpp
@@ -443,7 +443,7 @@
             unsigned int idx = 0;
             add_2D_tensor_argument(idx, _input, slice);
             add_2D_tensor_argument(idx, _output, slice);
-            enqueue(queue, *this, slice);
+            enqueue(queue, *this, slice, lws_hint());
         }
         while(window.slide_window_slice_2D(slice));
     }
@@ -466,7 +466,7 @@
             {
                 add_2D_tensor_argument(idx, _multi_output->cl_plane(i), win_uv);
             }
-            enqueue(queue, *this, slice);
+            enqueue(queue, *this, slice, lws_hint());
         }
         while(window.slide_window_slice_2D(slice));
     }
@@ -491,7 +491,7 @@
                 add_2D_tensor_argument(idx, _multi_input->cl_plane(i), win_uv);
             }
             add_2D_tensor_argument(idx, _output, slice);
-            enqueue(queue, *this, slice);
+            enqueue(queue, *this, slice, lws_hint());
         }
         while(window.slide_window_slice_2D(slice));
     }
@@ -528,7 +528,7 @@
             {
                 add_2D_tensor_argument(idx, _multi_output->cl_plane(i), win_out_uv);
             }
-            enqueue(queue, *this, slice);
+            enqueue(queue, *this, slice, lws_hint());
         }
         while(window.slide_window_slice_2D(slice));
     }