aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/LayerSupport.hpp
diff options
context:
space:
mode:
authorkevmay01 <kevin.may@arm.com>2018-11-29 08:40:19 +0000
committerkevmay01 <kevin.may@arm.com>2018-11-29 08:40:19 +0000
commit90539697433b507e20cf0d56f6c7f18614e03973 (patch)
tree604fb0d27451fbc8a212a78a5a83b54a474db8ad /include/armnn/LayerSupport.hpp
parentd57415d9a2117da9cc5c58f8b5e39ba7455417d1 (diff)
downloadarmnn-90539697433b507e20cf0d56f6c7f18614e03973.tar.gz
IVGCVSW-2245 Add Minimum Layer and no-op Factory implementation
Change-Id: I03fa374fd9692d98257de709f8c3ad0a49c88b95
Diffstat (limited to 'include/armnn/LayerSupport.hpp')
-rw-r--r--include/armnn/LayerSupport.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/armnn/LayerSupport.hpp b/include/armnn/LayerSupport.hpp
index 9d450fcc71..979579820a 100644
--- a/include/armnn/LayerSupport.hpp
+++ b/include/armnn/LayerSupport.hpp
@@ -271,4 +271,12 @@ bool IsStridedSliceSupported(const BackendId& backend,
char* reasonIfUnsupported = nullptr,
size_t reasonIfUnsupportedMaxLength = 1024);
+/// Deprecated in favor of IBackend and ILayerSupport interfaces
+bool IsMinimumSupported(const BackendId& backend,
+ const TensorInfo& input0,
+ const TensorInfo& input1,
+ const TensorInfo& output,
+ char* reasonIfUnsupported = nullptr,
+ size_t reasonIfUnsupportedMaxLength = 1024);
+
}