aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/NeonLayerSupport.hpp
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 /src/armnn/backends/NeonLayerSupport.hpp
parent2b7a1581f18b88b55153d4edc5cee0e602fd1bfc (diff)
downloadarmnn-c2044fe9d26a8b6afca48aee04bd5d29f8e27b8d.tar.gz
IVGCVSW-1804 : Add Subtraction layer types and placeholders
Change-Id: Ib9a477e5ce590df74ba05fece77258b9204f6523
Diffstat (limited to 'src/armnn/backends/NeonLayerSupport.hpp')
-rw-r--r--src/armnn/backends/NeonLayerSupport.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/armnn/backends/NeonLayerSupport.hpp b/src/armnn/backends/NeonLayerSupport.hpp
index 1715f83655..f7b62536a6 100644
--- a/src/armnn/backends/NeonLayerSupport.hpp
+++ b/src/armnn/backends/NeonLayerSupport.hpp
@@ -64,6 +64,11 @@ bool IsDivisionSupportedNeon(const TensorInfo& input0,
const TensorInfo& output,
std::string* reasonIfUnsupported = nullptr);
+bool IsSubtractionSupportedNeon(const TensorInfo& input0,
+ const TensorInfo& input1,
+ const TensorInfo& output,
+ std::string* reasonIfUnsupported = nullptr);
+
bool IsFullyConnectedSupportedNeon(const TensorInfo& input,
const TensorInfo& output,
const TensorInfo& weights,