| 35 | } |
| 36 | |
| 37 | void ICLOperator::run(ITensorPack &tensors) |
| 38 | { |
| 39 | if (tensors.empty()) |
| 40 | { |
| 41 | ARM_COMPUTE_ERROR("No inputs provided"); |
| 42 | } |
| 43 | |
| 44 | CLScheduler::get().enqueue_op(*_kernel.get(), tensors, false); |
| 45 | } |
| 46 | |
| 47 | void ICLOperator::prepare(ITensorPack &constants) |
| 48 | { |
no test coverage detected