aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/INetwork.hpp
diff options
context:
space:
mode:
authorRyan OShea <Ryan.OShea2@arm.com>2020-06-05 17:17:06 +0100
committerKeithARM <keith.davis@arm.com>2020-06-11 12:17:49 +0000
commitec6c68093eaef8a2b8e1fd64fcc765237973512e (patch)
treee4dd87466d5be44d1310f9e1c9c6e1355df43fbf /include/armnn/INetwork.hpp
parent6350d27286114dfdae5f65ae1823ba1150087efb (diff)
downloadarmnn-ec6c68093eaef8a2b8e1fd64fcc765237973512e.tar.gz
IVGCVSW-4906 Add front-end support for FILL operator
* Added new fill layer * Added visitor tests Signed-off-by: Ryan OShea <Ryan.OShea2@arm.com> Change-Id: Iea677014866b4f2d514004623f59ee83f3c0eef8 Signed-off-by: Keith Davis <keith.davis@arm.com>
Diffstat (limited to 'include/armnn/INetwork.hpp')
-rw-r--r--include/armnn/INetwork.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp
index 1dd949d038..ade6c52c90 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -213,10 +213,17 @@ public:
/// Add an ElementwiseUnary layer to the network.
/// @param name - Optional name for the layer.
/// @param desc - Descriptor for the elementwiseUnary operation.
- /// @ return - Interface for configuring the layer.
+ /// @return - Interface for configuring the layer.
virtual IConnectableLayer* AddElementwiseUnaryLayer(const ElementwiseUnaryDescriptor& elementwiseUnaryDescriptor,
const char* name = nullptr) = 0;
+ /// Add an Fill layer to the network.
+ /// @param name - Optional name for the layer.
+ /// @param fillDescriptor - Descriptor for the fill operation.
+ /// @return - Interface for configuring the layer.
+ virtual IConnectableLayer* AddFillLayer(const FillDescriptor& fillDescriptor,
+ const char* name = nullptr) = 0;
+
/// Adds a fully connected layer to the network.
/// @param fullyConnectedDescriptor - Description of the fully connected layer.
/// @param weights - Tensor for the weights data.