From 5a65cfd30e571bc5c24e2333e256f2a4b630f8cb Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 10 Aug 2018 14:10:08 +0100 Subject: COMPMID-1478: Fixed Doxygen comments + minor fixes - Allow check_bad_style.sh to only run on some of the files - Pass missing lws_hint() in CLNormalizationLayerKernel Change-Id: I2cf44f82f7ba6c8dc8d40691aeec7c6c3de385b5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/143628 Reviewed-by: Michele DiGiorgio Reviewed-by: Gian Marco Iodice Tested-by: Jenkins --- arm_compute/core/CL/ICLKernel.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'arm_compute/core/CL/ICLKernel.h') diff --git a/arm_compute/core/CL/ICLKernel.h b/arm_compute/core/CL/ICLKernel.h index 150dd62a89..f5423584e1 100644 --- a/arm_compute/core/CL/ICLKernel.h +++ b/arm_compute/core/CL/ICLKernel.h @@ -62,13 +62,19 @@ private: return 2 + 2 * dimension_size; } using IKernel::configure; //Prevent children from calling IKernel::configure() directly -public: +protected: + /** Configure the kernel's window and local workgroup size hint. + * + * @param[in] window The maximum window which will be returned by window() + * @param[in] lws_hint (Optional) Local-Workgroup-Size to use. + */ void configure_internal(const Window &window, cl::NDRange lws_hint = CLKernelLibrary::get().default_ndrange()) { _lws_hint = lws_hint; IKernel::configure(window); } +public: /** Constructor */ ICLKernel() : _kernel(nullptr), _target(GPUTarget::MIDGARD), _config_id(arm_compute::default_config_id), _max_workgroup_size(0), _lws_hint() -- cgit v1.2.1