aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/INetwork.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/INetwork.hpp')
-rw-r--r--include/armnn/INetwork.hpp7
1 files changed, 7 insertions, 0 deletions
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() {}