From c625f000198218fc8d03130ee5658f73b94b2683 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Mon, 17 Dec 2018 11:32:16 +0000 Subject: IVGCVSW-1048 RESIZE_BILINEAR NEON operator * Implemented NeonResizeBilinearWorkload * Enable ResizeBilinear Operator unit tests for Neon !android-nn-driver:405 Change-Id: Iec3100ccaf7d246e8eaf683d1f3ec9191df5241e --- include/armnn/ILayerSupport.hpp | 1 + include/armnn/LayerSupport.hpp | 1 + 2 files changed, 2 insertions(+) (limited to 'include') diff --git a/include/armnn/ILayerSupport.hpp b/include/armnn/ILayerSupport.hpp index d9e3d0a8c6..a603229b96 100644 --- a/include/armnn/ILayerSupport.hpp +++ b/include/armnn/ILayerSupport.hpp @@ -213,6 +213,7 @@ public: Optional reasonIfUnsupported = EmptyOptional()) const = 0; virtual bool IsResizeBilinearSupported(const TensorInfo& input, + const TensorInfo& output, Optional reasonIfUnsupported = EmptyOptional()) const = 0; virtual bool IsRsqrtSupported(const TensorInfo& input, diff --git a/include/armnn/LayerSupport.hpp b/include/armnn/LayerSupport.hpp index 3cf53dd844..b95b961e20 100644 --- a/include/armnn/LayerSupport.hpp +++ b/include/armnn/LayerSupport.hpp @@ -275,6 +275,7 @@ bool IsReshapeSupported(const BackendId& backend, /// Deprecated in favor of IBackend and ILayerSupport interfaces bool IsResizeBilinearSupported(const BackendId& backend, const TensorInfo& input, + const TensorInfo& output, char* reasonIfUnsupported = nullptr, size_t reasonIfUnsupportedMaxLength = 1024); -- cgit v1.2.1