| 60 | CLConvolutionLayer::~CLConvolutionLayer() = default; |
| 61 | |
| 62 | void CLConvolutionLayer::configure(ICLTensor *input, |
| 63 | const ICLTensor *weights, |
| 64 | const ICLTensor *biases, |
| 65 | ICLTensor *output, |
| 66 | const PadStrideInfo &conv_info, |
| 67 | const WeightsInfo &weights_info, |
| 68 | const Size2D &dilation, |
| 69 | const ActivationLayerInfo &act_info, |
| 70 | bool enable_fast_math, |
| 71 | unsigned int num_groups) |
| 72 | { |
| 73 | configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, weights_info, |
| 74 | dilation, act_info, enable_fast_math, num_groups); |
| 75 | } |
| 76 | |
| 77 | void CLConvolutionLayer::configure(const CLCompileContext &compile_context, |
| 78 | ICLTensor *input, |
nothing calls this directly
no test coverage detected