aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/LayerWithParameters.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/LayerWithParameters.hpp')
-rw-r--r--src/armnn/layers/LayerWithParameters.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/layers/LayerWithParameters.hpp b/src/armnn/layers/LayerWithParameters.hpp
index cce9ca209f..3f3bdd8050 100644
--- a/src/armnn/layers/LayerWithParameters.hpp
+++ b/src/armnn/layers/LayerWithParameters.hpp
@@ -40,10 +40,10 @@ protected:
/// Helper function to reduce duplication in *Layer::CreateWorkload.
template <typename QueueDescriptor>
- WorkloadInfo PrepInfoAndDesc(QueueDescriptor& descriptor, const Graph& graph) const
+ WorkloadInfo PrepInfoAndDesc(QueueDescriptor& descriptor) const
{
descriptor.m_Parameters = m_Param;
- return Layer::PrepInfoAndDesc(descriptor, graph);
+ return Layer::PrepInfoAndDesc(descriptor);
}
/// The parameters for the layer (not including tensor-valued weights etc.).