aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/ILayerSupport.hpp
diff options
context:
space:
mode:
authorNattapat Chaimanowong <nattapat.chaimanowong@arm.com>2018-11-28 10:44:37 +0000
committerMatthew Bentham <matthew.bentham@arm.com>2018-11-28 13:57:58 +0000
commit5a4304a09fcbfd5fab4c73e5fd0d4cc9f3170395 (patch)
treec48ca6e33adec68612a90d19c734c2c085807493 /include/armnn/ILayerSupport.hpp
parent831faedd5d2f6306b23202fa4e450c6d241a44a0 (diff)
downloadarmnn-5a4304a09fcbfd5fab4c73e5fd0d4cc9f3170395.tar.gz
IVGCVSW-2253 Add maximum layer and corresponding no-op factory implementation
Change-Id: I8964f5e8978c2d2a07734a381e3f7c656c22456a
Diffstat (limited to 'include/armnn/ILayerSupport.hpp')
-rw-r--r--include/armnn/ILayerSupport.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/armnn/ILayerSupport.hpp b/include/armnn/ILayerSupport.hpp
index 7677971c6b..b7a7b934ef 100644
--- a/include/armnn/ILayerSupport.hpp
+++ b/include/armnn/ILayerSupport.hpp
@@ -126,6 +126,11 @@ public:
const TensorInfo* cellToOutputWeights,
Optional<std::string&> reasonIfUnsupported = EmptyOptional()) const;
+ virtual bool IsMaximumSupported(const TensorInfo& input0,
+ const TensorInfo& input1,
+ const TensorInfo& output,
+ Optional<std::string&> reasonIfUnsupported = EmptyOptional()) const;
+
virtual bool IsMeanSupported(const TensorInfo& input,
const TensorInfo& output,
const MeanDescriptor& descriptor,