| 111 | } |
| 112 | |
| 113 | void CLCropResize::configure(const ICLTensor *input, |
| 114 | ICLTensor *boxes, |
| 115 | ICLTensor *box_ind, |
| 116 | ICLTensor *output, |
| 117 | Coordinates2D crop_size, |
| 118 | InterpolationPolicy method, |
| 119 | float extrapolation_value) |
| 120 | { |
| 121 | configure(CLKernelLibrary::get().get_compile_context(), input, boxes, box_ind, output, crop_size, method, |
| 122 | extrapolation_value); |
| 123 | } |
| 124 | |
| 125 | void CLCropResize::configure(const CLCompileContext &compile_context, |
| 126 | const ICLTensor *input, |
nothing calls this directly
no test coverage detected