From fb2fa29e83e5ed7cd8ddf90ffb95946e7498f365 Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Thu, 4 Jul 2019 11:59:48 +0100 Subject: IVGCVSW-3402 Support HAL 1.2 version of ResizeBilinear Signed-off-by: Aron Virginas-Tar Change-Id: Ide4754ccfd905b85afafd0eb626973f0745fe6ec --- 1.2/HalPolicy.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to '1.2/HalPolicy.hpp') diff --git a/1.2/HalPolicy.hpp b/1.2/HalPolicy.hpp index 762b1064..a7bef247 100644 --- a/1.2/HalPolicy.hpp +++ b/1.2/HalPolicy.hpp @@ -9,6 +9,8 @@ #include +#include + namespace armnn_driver { namespace hal_1_2 @@ -30,9 +32,15 @@ public: private: static bool ConvertConv2d(const Operation& operation, const Model& model, ConversionData& data); + static bool ConvertDepthwiseConv2d(const Operation& operation, const Model& model, ConversionData& data); + static bool ConvertPrelu(const Operation& operation, const Model& model, ConversionData& data); - static bool ConvertResizeNearestNeighbor(const Operation& operation, const Model& model, ConversionData& data); + + static bool ConvertResize(const Operation& operation, + const Model& model, + ConversionData& data, + armnn::ResizeMethod resizeMethod); }; } // namespace hal_1_2 -- cgit v1.2.1