| 61 | CLFullyConnectedLayer::~CLFullyConnectedLayer() = default; |
| 62 | |
| 63 | void CLFullyConnectedLayer::configure(const ICLTensor *input, |
| 64 | const ICLTensor *weights, |
| 65 | const ICLTensor *biases, |
| 66 | ICLTensor *output, |
| 67 | FullyConnectedLayerInfo fc_info) |
| 68 | { |
| 69 | configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, fc_info); |
| 70 | } |
| 71 | |
| 72 | void CLFullyConnectedLayer::configure(const CLCompileContext &compile_context, |
| 73 | const ICLTensor *input, |
nothing calls this directly
no test coverage detected