| 48 | }; |
| 49 | |
| 50 | NEGEMMConv2d::NEGEMMConv2d(const std::shared_ptr<IMemoryManager> &memory_manager) : _impl(std::make_unique<Impl>()) |
| 51 | { |
| 52 | _impl->memory_group = MemoryGroup(memory_manager); |
| 53 | } |
| 54 | |
| 55 | NEGEMMConv2d::~NEGEMMConv2d() = default; |
| 56 |
nothing calls this directly
no test coverage detected