From e46659669b753411421a6a552b32b9f1d27b8b2e Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Mon, 31 Jan 2022 16:08:53 +0000 Subject: IVGCVSW-6639 Add GetParameters to IConnectableLayer Change-Id: Id55a460ecb510f5b30235b03f54390f2c8188fc2 Signed-off-by: Jim Flynn --- include/armnn/INetwork.hpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/armnn/INetwork.hpp') diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp index a48ee25f72..073f119ef4 100644 --- a/include/armnn/INetwork.hpp +++ b/include/armnn/INetwork.hpp @@ -112,6 +112,13 @@ public: /// Returns the armnn::LayerType of this layer virtual LayerType GetType() const = 0; + /// If the layer has a descriptor return it. + /// The base descriptor can then be cast to the correct descriptor class. + /// If the layer has no associated descriptor a struct of type NullDescriptor will be returned. + /// Note: NullDescriptors can be detected because they return true when + /// the BaseDescriptor IsNull function is invoked. + virtual const BaseDescriptor& GetParameters() const = 0; + protected: /// Objects are not deletable via the handle ~IConnectableLayer() {} -- cgit v1.2.1