aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/SplitterLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/SplitterLayer.hpp')
-rw-r--r--src/armnn/layers/SplitterLayer.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/armnn/layers/SplitterLayer.hpp b/src/armnn/layers/SplitterLayer.hpp
index 9c684d479f..26d5b76a2d 100644
--- a/src/armnn/layers/SplitterLayer.hpp
+++ b/src/armnn/layers/SplitterLayer.hpp
@@ -24,9 +24,11 @@ public:
/// otherwise creates tensor handlers.
/// @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(Graph& graph, const IWorkloadFactory& factory) override;
virtual void CreateTensorHandles(const TensorHandleFactoryRegistry& registry,
- const IWorkloadFactory& factory) override;
+ const IWorkloadFactory& factory,
+ const bool IsMemoryManaged = true) override;
/// Creates a dynamically-allocated copy of this layer.
/// @param [in] graph The graph into which this layer is being cloned.