| 40 | ICLSimpleFunction::~ICLSimpleFunction() = default; |
| 41 | |
| 42 | void ICLSimpleFunction::run() |
| 43 | { |
| 44 | ARM_COMPUTE_ERROR_ON_MSG(!_kernel, "The child class didn't set the CL kernel or function isn't configured"); |
| 45 | schedule_kernel_on_ctx(_ctx, _border_handler.get(), false); |
| 46 | schedule_kernel_on_ctx(_ctx, _kernel.get()); |
| 47 | } |
nothing calls this directly
no test coverage detected