| 46 | CLNormalizationLayer::~CLNormalizationLayer() = default; |
| 47 | |
| 48 | void CLNormalizationLayer::configure(ICLTensor *input, ICLTensor *output, const NormalizationLayerInfo &norm_info) |
| 49 | { |
| 50 | configure(CLKernelLibrary::get().get_compile_context(), input, output, norm_info); |
| 51 | } |
| 52 | |
| 53 | void CLNormalizationLayer::configure(const CLCompileContext &compile_context, |
| 54 | ICLTensor *input, |
nothing calls this directly
no test coverage detected