aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRyan OShea <ryan.oshea3@arm.com>2023-07-28 17:35:18 +0100
committerryan.oshea3 <ryan.oshea3@arm.com>2023-08-02 13:33:28 +0000
commit083802d04b7a4499c4daba860c57e4f152f9c060 (patch)
treed1f51625f1d5046e6127235dceecdab6705bf0ec /include
parent7f2f59da45102cbb40df8d0a6b1159b787b96fde (diff)
downloadarmnn-083802d04b7a4499c4daba860c57e4f152f9c060.tar.gz
IVGCVSW-7703 Ensure PyArmNN has been updated with new features added in ArmNN
* Adds BatchMatMul layer and descriptor to pyarmnn * Adds ReverseV2 layer to pyarmnn * Adds ElementWiseBinary layer and descriptor to pyarmnn * Adds Tile layer and descriptor to pyarmnn * Adds network test for each layer Signed-off-by: Ryan OShea <ryan.oshea3@arm.com> Change-Id: Iac70fb7f857978d676d3b67a4cc20fb5f3270676
Diffstat (limited to 'include')
-rw-r--r--include/armnn/INetwork.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp
index 830e0bac66..1640d7c37d 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -435,7 +435,7 @@ public:
/// @param name - Optional name for the layer.
/// @param desc - Descriptor for the elementwiseBinary operations.
/// @return - Interface for configuring the layer.
- IConnectableLayer* AddElementwiseBinaryLayer(const ElementwiseBinaryDescriptor& elementwiseUnaryDescriptor,
+ IConnectableLayer* AddElementwiseBinaryLayer(const ElementwiseBinaryDescriptor& elementwiseBinaryDescriptor,
const char* name = nullptr);
/// Add an ElementwiseUnary layer to the network.