aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/INetwork.hpp
diff options
context:
space:
mode:
authorAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-09-19 14:31:17 +0100
committerÁron Virginás-Tar <aron.virginas-tar@arm.com>2019-09-20 14:18:22 +0000
commitdd6247f52dcb33bd03391b7ee573d7082e18cca7 (patch)
treefb849d8afc6ffd74c1f6334d1f81b92a367fd024 /include/armnn/INetwork.hpp
parenta2f4b4be6adbd8b53e4e860c4d7c3a704e343395 (diff)
downloadarmnn-dd6247f52dcb33bd03391b7ee573d7082e18cca7.tar.gz
IVGCVSW-3883 Add frontend for DepthToSpace layer
Signed-off-by: Aron Virginas-Tar <Aron.Virginas-Tar@arm.com> Change-Id: I18d957af6e988ffb6b9ee46ac836d1f38600e10b
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 09026ad9e6..0e0b99a718 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -141,6 +141,13 @@ public:
const ConstTensor& biases,
const char* name = nullptr) = 0;
+ /// Adds a depth to space layer to the network.
+ /// @param depthToSpaceDescriptor - Parameters for the depth to space operation.
+ /// @param name - Optional name for the layer.
+ /// @return - Interface for configuring the layer.
+ virtual IConnectableLayer* AddDepthToSpaceLayer(const DepthToSpaceDescriptor& depthToSpaceDescriptor,
+ const char* name = nullptr) = 0;
+
/// Adds a 2D depthwise convolution layer to the network.
/// @param convolution2dDescriptor - Description of the 2D depthwise convolution layer.
/// @param weights - Tensor for the weights. Expected format: [channelMultiplier, inputChannels, height, width].