From 2099595bac339c953bf4291be12703c8845e916e Mon Sep 17 00:00:00 2001 From: FrancisMurtagh Date: Mon, 17 Dec 2018 12:11:36 +0000 Subject: IVGCVSW-2398 Add no-op factory implementations for all backends for the Equal operation * Add QueueDescriptor in WorkloadData.hpp * Add CreateEqual function in WorkloadFactory.hpp * Added stub implementation of the CreateEqual function in RefWorkloadFactory, NeonWorkloadFactory and ClWorkloadFactory Change-Id: Iec6dc2f989c67fa6f0c32cfb93508995c8580783 --- include/armnn/INetwork.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/armnn/INetwork.hpp') diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp index 7c88cf0f00..63fd78bb69 100644 --- a/include/armnn/INetwork.hpp +++ b/include/armnn/INetwork.hpp @@ -333,6 +333,11 @@ public: /// @ return - Interface for configuring the layer. virtual IConnectableLayer* AddGreaterLayer(const char* name = nullptr) = 0; + /// Add a Equal layer to the network. + /// @param name - Optional name for the layer. + /// @ return - Interface for configuring the layer. + virtual IConnectableLayer* AddEqualLayer(const char* name = nullptr) = 0; + protected: ~INetwork() {} }; -- cgit v1.2.1