aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Beck <david.beck@arm.com>2018-09-05 15:00:38 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-09-25 14:54:29 +0100
commitc2044fe9d26a8b6afca48aee04bd5d29f8e27b8d (patch)
tree967206cdc246131ce1d834f094c4556ed3d62fac /include
parent2b7a1581f18b88b55153d4edc5cee0e602fd1bfc (diff)
downloadarmnn-c2044fe9d26a8b6afca48aee04bd5d29f8e27b8d.tar.gz
IVGCVSW-1804 : Add Subtraction layer types and placeholders
Change-Id: Ib9a477e5ce590df74ba05fece77258b9204f6523
Diffstat (limited to 'include')
-rw-r--r--include/armnn/LayerSupport.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/armnn/LayerSupport.hpp b/include/armnn/LayerSupport.hpp
index f129bba707..ac7d08ff62 100644
--- a/include/armnn/LayerSupport.hpp
+++ b/include/armnn/LayerSupport.hpp
@@ -80,6 +80,13 @@ bool IsDivisionSupported(Compute compute,
char* reasonIfUnsupported = nullptr,
size_t reasonIfUnsupportedMaxLength = 1024);
+bool IsSubtractionSupported(Compute compute,
+ const TensorInfo& input0,
+ const TensorInfo& input1,
+ const TensorInfo& output,
+ char* reasonIfUnsupported = nullptr,
+ size_t reasonIfUnsupportedMaxLength = 1024);
+
bool IsInputSupported(Compute compute,
const TensorInfo& input,
char* reasonIfUnsupported = nullptr,