| 147 | } |
| 148 | |
| 149 | Status NERangeKernel::validate(const ITensorInfo *output, float start, float end, float step) |
| 150 | { |
| 151 | ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output); |
| 152 | |
| 153 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*output, start, end, step)); |
| 154 | |
| 155 | return Status{}; |
| 156 | } |
| 157 | |
| 158 | void NERangeKernel::run(const Window &window, const ThreadInfo &info) |
| 159 | { |
nothing calls this directly
no test coverage detected