From 3fb7e105ae62cbfb3ebf1edebb90e2b6672b22aa Mon Sep 17 00:00:00 2001 From: David Monahan Date: Tue, 20 Aug 2019 11:25:29 +0100 Subject: IVGCVSW-3623 Implement NeonTensorHandle::Import Signed-off-by: David Monahan Change-Id: I7213788725fd4e4cf1176998604e999d0b7ed6cc --- src/armnn/layers/OutputLayer.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/armnn/layers/OutputLayer.hpp') diff --git a/src/armnn/layers/OutputLayer.hpp b/src/armnn/layers/OutputLayer.hpp index 2aa2dbd6c9..c9615cca66 100644 --- a/src/armnn/layers/OutputLayer.hpp +++ b/src/armnn/layers/OutputLayer.hpp @@ -24,10 +24,12 @@ public: /// otherwise creates tensor handlers by default. Ignores parameters for Output type. /// @param [in] registry Contains all the registered tensor handle factories available for use. /// @param [in] factory The workload factory which will create the workload. + /// @param [in] IsMemoryManaged Determine whether or not to assign a memory manager during creation virtual void CreateTensorHandles(const TensorHandleFactoryRegistry& registry, - const IWorkloadFactory& factory) override + const IWorkloadFactory& factory, + const bool IsMemoryManaged = true) override { - boost::ignore_unused(registry, factory); + boost::ignore_unused(registry, factory, IsMemoryManaged); } /// Creates a dynamically-allocated copy of this layer. -- cgit v1.2.1