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 Local-Workgroup-Size to use. * @param[in] wbsm_hint (Optional) Workgroup-Batch-Size-Modifier to use. */
| 107 | * @param[in] wbsm_hint (Optional) Workgroup-Batch-Size-Modifier to use. |
| 108 | */ |
| 109 | void configure_internal(const Window &window, cl::NDRange lws_hint, cl_int wbsm_hint = 0) |
| 110 | { |
| 111 | configure_internal(window, CLTuningParams(lws_hint, wbsm_hint)); |
| 112 | } |
| 113 | |
| 114 | /** Configure the kernel's window and tuning parameters hints. |
| 115 | * |
nothing calls this directly
no test coverage detected