aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/INetwork.hpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2022-04-12 22:07:09 +0100
committerTeresa Charlin <teresa.charlinreyes@arm.com>2022-05-03 21:24:52 +0100
commitb2d3ec5b1e938ef34facfdbcff83fc8e845d5f7c (patch)
tree74ee2c47e76fddff249a9f25db01960a52eb2360 /include/armnn/INetwork.hpp
parent04cd60384f5fc8455bb7cf64416daa7b001754d1 (diff)
downloadarmnn-b2d3ec5b1e938ef34facfdbcff83fc8e845d5f7c.tar.gz
IVGCVSW-6856 Add GATHERNd FrontEnd and Ref Implementation
* Add front end * Add reference workload * Add unit tests * Add EndToEnd test Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I4cebd17b18476df86162e2dda3366c10e80bd2f8
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 eaec973899..7488fdc026 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -651,6 +651,11 @@ public:
IConnectableLayer* AddGatherLayer(const GatherDescriptor& descriptor,
const char* name = nullptr);
+ /// Add GatherNd layer to the network.
+ /// @param name - Optional name for the layer.
+ /// @return - Interface for configuring the layer.
+ IConnectableLayer* AddGatherNdLayer(const char* name = nullptr);
+
/// Adds a switch layer to the network.
/// @param name - Optional name for the layer.
/// @return - Interface for configuring the layer.