| 39 | } |
| 40 | |
| 41 | void INEOperator::run(ITensorPack &tensors) |
| 42 | { |
| 43 | if (tensors.empty()) |
| 44 | { |
| 45 | ARM_COMPUTE_ERROR("No inputs provided"); |
| 46 | } |
| 47 | |
| 48 | run(tensors, _kernel->window()); |
| 49 | } |
| 50 | |
| 51 | void INEOperator::run(ITensorPack &tensors, const Window &window) |
| 52 | { |
nothing calls this directly
no test coverage detected