aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/OutputLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/OutputLayer.hpp')
-rw-r--r--src/armnn/layers/OutputLayer.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/armnn/layers/OutputLayer.hpp b/src/armnn/layers/OutputLayer.hpp
index b86f8e2dfe..2aa2dbd6c9 100644
--- a/src/armnn/layers/OutputLayer.hpp
+++ b/src/armnn/layers/OutputLayer.hpp
@@ -22,11 +22,12 @@ public:
/// Set the outputs to be appropriate sub tensors of the input if sub tensors are supported
/// otherwise creates tensor handlers by default. Ignores parameters for Output type.
- /// @param [in] graph The graph where this layer can be found.
+ /// @param [in] registry Contains all the registered tensor handle factories available for use.
/// @param [in] factory The workload factory which will create the workload.
- virtual void CreateTensorHandles(Graph& graph, const IWorkloadFactory& factory) override
+ virtual void CreateTensorHandles(const TensorHandleFactoryRegistry& registry,
+ const IWorkloadFactory& factory) override
{
- boost::ignore_unused(graph, factory);
+ boost::ignore_unused(registry, factory);
}
/// Creates a dynamically-allocated copy of this layer.