| 19 | } |
| 20 | |
| 21 | void OutputHandler::CreateTensorHandles(const IWorkloadFactory& factory, const bool IsMemoryManaged) |
| 22 | { |
| 23 | ARMNN_NO_DEPRECATE_WARN_BEGIN |
| 24 | m_TensorHandle = factory.CreateTensorHandle(m_TensorInfo, IsMemoryManaged); |
| 25 | ARMNN_NO_DEPRECATE_WARN_END |
| 26 | } |
| 27 | |
| 28 | void OutputHandler::CreateTensorHandles(const ITensorHandleFactory& factory, const bool IsMemoryManaged) |
| 29 | { |
nothing calls this directly
no test coverage detected