aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/INetwork.hpp
diff options
context:
space:
mode:
authorConor Kennedy <conor.kennedy@arm.com>2018-11-14 15:28:28 +0000
committerAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2018-11-15 11:23:08 +0000
commit430b5d824a17ddfb31bb29c18407e45e0def958c (patch)
tree529e92404ae0df12c3f92da803637591f3bba7ee /include/armnn/INetwork.hpp
parent5caf907efc31e774f8afde54b17a5596477772f6 (diff)
downloadarmnn-430b5d824a17ddfb31bb29c18407e45e0def958c.tar.gz
IVGCVSW-2086: Add StridedSlice layer & corresponding no-op factory implementations
Change-Id: I906dcb8b4c9b491bf3a661f208c09d0ea1c0fa35
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 df274d6dc1..ac7faab279 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -311,6 +311,13 @@ public:
virtual IConnectableLayer* AddPadLayer(const PadDescriptor& padDescriptor,
const char* name = nullptr) = 0;
+ /// Adds a strided slice layer to the network.
+ /// @param StridedSliceDescriptor - Parameters for the strided slice operation.
+ /// @param name - Optional name for the layer.
+ /// @return - Interface for configuring the layer.
+ virtual IConnectableLayer* AddStridedSliceLayer(const StridedSliceDescriptor& stridedSliceDescriptor,
+ const char* name = nullptr) = 0;
+
protected:
~INetwork() {}
};