Set the Local-Workgroup-Size hint * * @note This method should be called after the configuration of the kernel * * @param[in] lws_hint Local-Workgroup-Size to use */
| 371 | * @param[in] lws_hint Local-Workgroup-Size to use |
| 372 | */ |
| 373 | void set_lws_hint(const cl::NDRange &lws_hint) |
| 374 | { |
| 375 | ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this); // lws_hint will be overwritten by configure() |
| 376 | _tuning_params_hint.set_lws(lws_hint); |
| 377 | } |
| 378 | |
| 379 | /** Return the Local-Workgroup-Size hint |
| 380 | * |
no test coverage detected