| 47 | NEPoolingLayer::~NEPoolingLayer() = default; |
| 48 | |
| 49 | NEPoolingLayer::NEPoolingLayer(std::shared_ptr<IMemoryManager> memory_manager) : _impl(std::make_unique<Impl>()) |
| 50 | { |
| 51 | _impl->memory_group = MemoryGroup(std::move(memory_manager)); |
| 52 | } |
| 53 | |
| 54 | void NEPoolingLayer::configure(ITensor *input, ITensor *output, const PoolingLayerInfo &pool_info, ITensor *indices) |
| 55 | { |
nothing calls this directly
no test coverage detected