| 105 | } |
| 106 | |
| 107 | void CLFFTConvolutionLayer::configure(ICLTensor *input, |
| 108 | const ICLTensor *weights, |
| 109 | const ICLTensor *biases, |
| 110 | ICLTensor *output, |
| 111 | const PadStrideInfo &conv_info, |
| 112 | const ActivationLayerInfo &act_info, |
| 113 | bool enable_fast_math) |
| 114 | { |
| 115 | configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info, act_info, |
| 116 | enable_fast_math); |
| 117 | } |
| 118 | |
| 119 | void CLFFTConvolutionLayer::configure(const CLCompileContext &compile_context, |
| 120 | ICLTensor *input, |
nothing calls this directly
no test coverage detected