| 70 | CLGEMMConvolutionLayer::~CLGEMMConvolutionLayer() = default; |
| 71 | |
| 72 | void CLGEMMConvolutionLayer::configure(const ICLTensor *input, |
| 73 | const ICLTensor *weights, |
| 74 | const ICLTensor *biases, |
| 75 | ICLTensor *output, |
| 76 | const PadStrideInfo &conv_info, |
| 77 | const WeightsInfo &weights_info, |
| 78 | const Size2D &dilation, |
| 79 | const ActivationLayerInfo &act_info, |
| 80 | unsigned int num_groups) |
| 81 | { |
| 82 | configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, weights_info, |
| 83 | dilation, act_info, num_groups); |
| 84 | } |
| 85 | |
| 86 | void CLGEMMConvolutionLayer::configure(const CLCompileContext &compile_context, |
| 87 | const ICLTensor *input, |
nothing calls this directly
no test coverage detected