MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / configure_internal

Method configure_internal

src/core/CL/ICLKernel.h:109–112  ·  view source on GitHub ↗

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. */

Source from the content-addressed store, hash-verified

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 *

Callers

nothing calls this directly

Calls 5

CLTuningParamsClass · 0.85
is_same_lwsFunction · 0.85
get_lwsMethod · 0.80
set_lwsMethod · 0.80
default_ndrangeMethod · 0.45

Tested by

no test coverage detected