aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/INetwork.hpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-06-12 15:42:18 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 16:15:22 +0000
commit0e406eed386a4ea015ec703c84a74ea775d88b99 (patch)
treec176eab811b78ce83e86bca2db883e9770708eb2 /include/armnn/INetwork.hpp
parente52211e1544a30d24b29523c389116a9e4446e8c (diff)
downloadarmnn-0e406eed386a4ea015ec703c84a74ea775d88b99.tar.gz
IVGCVSW-3267 Add Arm NN front end support for the new Prelu Activation layer
* Added new PreluLayer class * Made necessary changes to ILayerSupport, ILayerVisitor, etc. * Added unit tests Change-Id: Ifcfb78e823bb5a245ed1dad15290d2f60115c882 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
Diffstat (limited to 'include/armnn/INetwork.hpp')
-rw-r--r--include/armnn/INetwork.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp
index e5ebbc4e44..cacca33caf 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -427,6 +427,11 @@ public:
/// @return - Interface for configuring the layer.
virtual IConnectableLayer* AddSwitchLayer(const char* name = nullptr) = 0;
+ /// Adds a PReLU layer to the network.
+ /// @param name - Optional name for the layer.
+ /// @return - Interface for configuring the layer.
+ virtual IConnectableLayer* AddPreluLayer(const char* name = nullptr) = 0;
+
virtual void Accept(ILayerVisitor& visitor) const = 0;
protected: