Set the workgroup batch size modifier hint * * @note This method should be called after the configuration of the kernel * * @param[in] wbsm_hint workgroup batch size modifier value */
| 392 | * @param[in] wbsm_hint workgroup batch size modifier value |
| 393 | */ |
| 394 | void set_wbsm_hint(const cl_int &wbsm_hint) |
| 395 | { |
| 396 | ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this); // wbsm_hint will be overwritten by configure() |
| 397 | _tuning_params_hint.set_wbsm(wbsm_hint); |
| 398 | } |
| 399 | |
| 400 | /** Return the workgroup batch size modifier hint |
| 401 | * |
no test coverage detected