From 56ccf68c7858560f2ba00f19076b3cb112970881 Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Mon, 13 Dec 2021 18:48:12 +0000 Subject: IVGCVSW-6633 SubgraphView uses IConnectableLayer rather than Layer in its m_Layers * Added IInputSlot, IOutputSlot and IConnectableLayer to SubgraphView * Deprecated old member functions * Removed deprecated calls in ArmNN * Added GetOwningIConnectableLayer function to IOutputSlot * Updates ArmNN Core Major version for IOutputSlot ABI break * Updated Minor version of TfliteParser, OnnxParser and Delegate Signed-off-by: Francis Murtagh Change-Id: I2a8611bfabf5ae09d3602fe6a4bef166e18117b9 --- src/armnn/Layer.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/armnn/Layer.cpp') diff --git a/src/armnn/Layer.cpp b/src/armnn/Layer.cpp index e0d0f913c3..98fc14b56e 100644 --- a/src/armnn/Layer.cpp +++ b/src/armnn/Layer.cpp @@ -480,4 +480,9 @@ void Layer::ExecuteStrategy(IStrategy& strategy) const strategy.ExecuteStrategy(this, BaseDescriptor(), {}, GetName()); } +const IConnectableLayer& OutputSlot::GetOwningIConnectableLayer() const +{ + return m_OwningLayer; +} + } // namespace armnn -- cgit v1.2.1