From aec942c3f258db46e0fb8054d39c0e7c3c411728 Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Wed, 14 Aug 2019 14:37:42 +0100 Subject: IVGCVSW-3640 Add multi-channel TransposeConvolution2d unit tests to CL backend * Fixed bug in multi-channel test and reference workload implementation * Enabled multi-channel tests on CL backend Signed-off-by: Aron Virginas-Tar Change-Id: I08bb523bc68d9c93a1012b4f487a5bce36a085b1 --- src/backends/cl/test/ClLayerTests.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/backends/cl/test/ClLayerTests.cpp') diff --git a/src/backends/cl/test/ClLayerTests.cpp b/src/backends/cl/test/ClLayerTests.cpp index d3f39219f3..8a5435b83c 100644 --- a/src/backends/cl/test/ClLayerTests.cpp +++ b/src/backends/cl/test/ClLayerTests.cpp @@ -760,6 +760,19 @@ ARMNN_AUTO_TEST_CASE(UnbiasedStridedTransposeConvolution2dUint8Nhwc, true, DataLayout::NHWC) +ARMNN_AUTO_TEST_CASE(MultiChannelTransposeConvolution2dFloatNchw, + MultiChannelTransposeConvolution2dTest, + DataLayout::NCHW) +ARMNN_AUTO_TEST_CASE(MultiChannelTransposeConvolution2dFloatNhwc, + MultiChannelTransposeConvolution2dTest, + DataLayout::NHWC) +ARMNN_AUTO_TEST_CASE(MultiChannelTransposeConvolution2dUint8Nchw, + MultiChannelTransposeConvolution2dTest, + DataLayout::NCHW) +ARMNN_AUTO_TEST_CASE(MultiChannelTransposeConvolution2dUint8Nhwc, + MultiChannelTransposeConvolution2dTest, + DataLayout::NHWC) + // ============================================================================ // COMPARE tests -- cgit v1.2.1