| 156 | } |
| 157 | |
| 158 | void NERangeKernel::run(const Window &window, const ThreadInfo &info) |
| 159 | { |
| 160 | ARM_COMPUTE_UNUSED(info); |
| 161 | ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this); |
| 162 | ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window); |
| 163 | const auto *uk = get_implementation(RangeSelectorData{_output->info()->data_type()}); |
| 164 | |
| 165 | uk->ukernel(_output, _start, _step, window); |
| 166 | } |
| 167 | } // namespace arm_compute |
nothing calls this directly
no test coverage detected