| 33 | namespace arm_compute |
| 34 | { |
| 35 | void CLComparison::configure(ICLTensor *input1, ICLTensor *input2, ICLTensor *output, ComparisonOperation operation) |
| 36 | { |
| 37 | configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, operation); |
| 38 | } |
| 39 | |
| 40 | void CLComparison::configure(const CLCompileContext &compile_context, |
| 41 | ICLTensor *input1, |
nothing calls this directly
no test coverage detected