| 84 | } |
| 85 | |
| 86 | void CLROIPoolingLayerKernel::configure(const ICLTensor *input, |
| 87 | const ICLTensor *rois, |
| 88 | ICLTensor *output, |
| 89 | const ROIPoolingLayerInfo &pool_info) |
| 90 | { |
| 91 | configure(CLKernelLibrary::get().get_compile_context(), input, rois, output, pool_info); |
| 92 | } |
| 93 | |
| 94 | void CLROIPoolingLayerKernel::configure(const CLCompileContext &compile_context, |
| 95 | const ICLTensor *input, |
nothing calls this directly
no test coverage detected