| 473 | } |
| 474 | |
| 475 | void set_wbsm(cl::Kernel &kernel, cl_int wbsm_hint) |
| 476 | { |
| 477 | cl_int err = clSetKernelExecInfo(kernel.get(), CL_KERNEL_EXEC_INFO_WORKGROUP_BATCH_SIZE_MODIFIER_ARM, |
| 478 | sizeof(cl_int), &wbsm_hint); |
| 479 | ARM_COMPUTE_UNUSED(err); |
| 480 | ARM_COMPUTE_ERROR_ON(err != CL_SUCCESS); |
| 481 | } |
| 482 | |
| 483 | bool export_to_cl_image(const ITensorInfo *tensor) |
| 484 | { |
no test coverage detected