From 2445744f46921ba5e30f9110c26b9485ddfe90b5 Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Wed, 27 Nov 2019 13:18:25 +0000 Subject: IVGCVSW-3864 Add support for per-channel QSymm8 DepthwiseConvolution2d to Neon backend Signed-off-by: Aron Virginas-Tar Change-Id: I6dadb36abc2e71f4d4309dcce6072c4a66384cf9 --- src/backends/neon/test/NeonLayerTests.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/backends/neon/test/NeonLayerTests.cpp b/src/backends/neon/test/NeonLayerTests.cpp index d74a4c6ebe..d645168456 100644 --- a/src/backends/neon/test/NeonLayerTests.cpp +++ b/src/backends/neon/test/NeonLayerTests.cpp @@ -190,6 +190,11 @@ ARMNN_AUTO_TEST_CASE(UnbiasedDepthwiseConvolution2dAsymmetricNhwc, ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dDepthMul64, DepthwiseConvolution2dDepthMul64Test); +ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dPerAxisQuantTestNchw, DepthwiseConvolution2dPerAxisQuantTest, + DataLayout::NCHW); +ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dPerAxisQuantTestNhwc, DepthwiseConvolution2dPerAxisQuantTest, + DataLayout::NHWC); + namespace { -- cgit v1.2.1