aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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 be03f8388b..0405074d3a 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -274,6 +274,11 @@ public:
/// @return - Interface for configuring the layer.
virtual IConnectableLayer* AddDivisionLayer(const char* name = nullptr) = 0;
+ /// Adds a subtraction layer to the network.
+ /// @param name - Optional name for the layer.
+ /// @return - Interface for configuring the layer.
+ virtual IConnectableLayer* AddSubtractionLayer(const char* name = nullptr) = 0;
+
protected:
~INetwork() {}
};