| 42 | }; |
| 43 | |
| 44 | NEAddMulAdd::NEAddMulAdd(std::shared_ptr<IMemoryManager> memory_manager) : _impl(std::make_unique<Impl>()) |
| 45 | { |
| 46 | _impl->memory_group = MemoryGroup(std::move(memory_manager)); |
| 47 | } |
| 48 | |
| 49 | NEAddMulAdd::~NEAddMulAdd() = default; |
| 50 |
nothing calls this directly
no test coverage detected