| 34 | using namespace arm_compute; |
| 35 | |
| 36 | void CLRange::configure(ICLTensor *output, const float start, const float end, const float step) |
| 37 | { |
| 38 | configure(CLKernelLibrary::get().get_compile_context(), output, start, end, step); |
| 39 | } |
| 40 | |
| 41 | void CLRange::configure( |
| 42 | const CLCompileContext &compile_context, ICLTensor *output, const float start, const float end, const float step) |
nothing calls this directly
no test coverage detected