From 382a91d5029e83002bda4ab006f9c73340d679fe Mon Sep 17 00:00:00 2001 From: jimfly01 Date: Fri, 26 Oct 2018 15:55:50 +0100 Subject: IVGCVSW-2074: Updated DepthwiseConvolution2dAsymmetricTest for NHWC Change-Id: I1bc8d2f270d4abfaa62e4843b8d96bcf462c6b09 --- src/backends/neon/test/NeonLayerTests.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/backends/neon') diff --git a/src/backends/neon/test/NeonLayerTests.cpp b/src/backends/neon/test/NeonLayerTests.cpp index 349dbf8fb3..c7b0050311 100644 --- a/src/backends/neon/test/NeonLayerTests.cpp +++ b/src/backends/neon/test/NeonLayerTests.cpp @@ -98,8 +98,14 @@ ARMNN_AUTO_TEST_CASE(UnbiasedDepthwiseConvolution2dDepthMul1, DepthwiseConvoluti ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dDepthMul1Uint8, DepthwiseConvolution2dDepthMul1Uint8Test, true) ARMNN_AUTO_TEST_CASE(UnbiasedDepthwiseConvolution2dDepthMul1Uint8, DepthwiseConvolution2dDepthMul1Uint8Test, false) -ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dAsymmetric, DepthwiseConvolution2dAsymmetricTest, true) -ARMNN_AUTO_TEST_CASE(UnbiasedDepthwiseConvolution2dAsymmetric, DepthwiseConvolution2dAsymmetricTest, false) +ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dAsymmetric, + DepthwiseConvolution2dAsymmetricTest, true, armnn::DataLayout::NCHW) +ARMNN_AUTO_TEST_CASE(UnbiasedDepthwiseConvolution2dAsymmetric, + DepthwiseConvolution2dAsymmetricTest, false, armnn::DataLayout::NCHW) +ARMNN_AUTO_TEST_CASE(DepthwiseConvolution2dAsymmetricNhwc, + DepthwiseConvolution2dAsymmetricTest, true, armnn::DataLayout::NHWC) +ARMNN_AUTO_TEST_CASE(UnbiasedDepthwiseConvolution2dAsymmetricNhwc, + DepthwiseConvolution2dAsymmetricTest, false, armnn::DataLayout::NHWC) namespace { -- cgit v1.2.1