From 92c5072f5f6c23fd8bd49907541fa71897cec847 Mon Sep 17 00:00:00 2001 From: Colm Donelan Date: Mon, 29 Mar 2021 14:59:04 +0100 Subject: IVGCVSW-5676 Fixing build failure in backends jenkins job. * Adding ref backend "ifdef" around ref test cases in NeonLayerTests_NDK_Bug.cpp * Removing unnecessary includes from NeonLayerTests_NDK_Bug.cpp. * Removing unnecessary include from NeonLayerTests.cpp * Breaking up Backends_Capability_Test into one per backend to allow for conditional compilation. * Remove unnecessary printout in src/backends/neon/test/CMakeLists.txt Signed-off-by: Colm Donelan Change-Id: I9a36cd197e684ed55af244e5c998ee67bb8da88c --- .../backendsCommon/test/CompatibilityTests.cpp | 27 ++++++++++++++++++---- src/backends/neon/test/CMakeLists.txt | 1 - src/backends/neon/test/NeonLayerTests.cpp | 2 -- src/backends/neon/test/NeonLayerTests_NDK_Bug.cpp | 21 ++++++----------- 4 files changed, 30 insertions(+), 21 deletions(-) (limited to 'src') diff --git a/src/backends/backendsCommon/test/CompatibilityTests.cpp b/src/backends/backendsCommon/test/CompatibilityTests.cpp index 1c4ff709fa..915a0151d9 100644 --- a/src/backends/backendsCommon/test/CompatibilityTests.cpp +++ b/src/backends/backendsCommon/test/CompatibilityTests.cpp @@ -119,15 +119,34 @@ BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE(BackendCapability) -BOOST_AUTO_TEST_CASE(Backends_Capability_Test) +#if defined(ARMNNREF_ENABLED) + +BOOST_AUTO_TEST_CASE(Ref_Backends_Capability_Test) { - auto neonBackend = std::make_unique(); - auto clBackend = std::make_unique(); auto refBackend = std::make_unique(); + BOOST_CHECK(refBackend->HasCapability(armnn::BackendCapability::NonConstWeights)); +} +#endif + +#if defined(ARMCOMPUTENEON_ENABLED) + +BOOST_AUTO_TEST_CASE(Neon_Backends_Capability_Test) +{ + auto neonBackend = std::make_unique(); BOOST_CHECK(!neonBackend->HasCapability(armnn::BackendCapability::NonConstWeights)); +} + +#endif + +#if defined(ARMCOMPUTECL_ENABLED) + +BOOST_AUTO_TEST_CASE(Cl_Backends_Capability_Test) +{ + auto clBackend = std::make_unique(); BOOST_CHECK(!clBackend->HasCapability(armnn::BackendCapability::NonConstWeights)); - BOOST_CHECK(refBackend->HasCapability(armnn::BackendCapability::NonConstWeights)); } +#endif + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/backends/neon/test/CMakeLists.txt b/src/backends/neon/test/CMakeLists.txt index 5c37f1f2a7..d2363add9e 100644 --- a/src/backends/neon/test/CMakeLists.txt +++ b/src/backends/neon/test/CMakeLists.txt @@ -38,7 +38,6 @@ if ( INCLUDE_NDK_BUG_TESTS STREQUAL "ON" ) list(APPEND armnnNeonBackendUnitTests_sources NeonLayerTests_NDK_Bug.cpp ) - message ( "Added NeonLayerTests_NDK_Bug.cpp" ) else() endif() diff --git a/src/backends/neon/test/NeonLayerTests.cpp b/src/backends/neon/test/NeonLayerTests.cpp index c63f0c286f..f484eadd81 100644 --- a/src/backends/neon/test/NeonLayerTests.cpp +++ b/src/backends/neon/test/NeonLayerTests.cpp @@ -11,8 +11,6 @@ #include #include -#include - #include #include diff --git a/src/backends/neon/test/NeonLayerTests_NDK_Bug.cpp b/src/backends/neon/test/NeonLayerTests_NDK_Bug.cpp index ca6dea9fab..1fef43957d 100644 --- a/src/backends/neon/test/NeonLayerTests_NDK_Bug.cpp +++ b/src/backends/neon/test/NeonLayerTests_NDK_Bug.cpp @@ -5,18 +5,8 @@ #include "NeonWorkloadFactoryHelper.hpp" -#include -#include - -#include #include - -#include - -#include -#include - -#include +#include BOOST_AUTO_TEST_SUITE(Compute_ArmComputeNeon) @@ -42,13 +32,16 @@ ARMNN_AUTO_TEST_CASE_WITH_THF(L2Normalization1dNhwc, L2Normalization1dTest, Data ARMNN_AUTO_TEST_CASE_WITH_THF(LstmLayerFloat32NoCifgWithPeepholeWithProjectionWithLayerNorm, LstmLayerFloat32NoCifgWithPeepholeWithProjectionWithLayerNormTest) -ARMNN_COMPARE_REF_AUTO_TEST_CASE_WITH_THF(CompareSoftmaxBeta1WithReference, CompareSoftmaxTest, 1.0f) -ARMNN_COMPARE_REF_AUTO_TEST_CASE_WITH_THF(CompareSoftmaxBeta2WithReference, CompareSoftmaxTest, 2.0f) - // ReduceSum ARMNN_AUTO_TEST_CASE_WITH_THF(ReduceSumFloat32, ReduceSumSimpleTest) ARMNN_AUTO_TEST_CASE_WITH_THF(ReduceSumSingleAxisFloat32_3, ReduceSumSingleAxisTest3) +#if defined(ARMNNREF_ENABLED) + +ARMNN_COMPARE_REF_AUTO_TEST_CASE_WITH_THF(CompareSoftmaxBeta1WithReference, CompareSoftmaxTest, 1.0f) +ARMNN_COMPARE_REF_AUTO_TEST_CASE_WITH_THF(CompareSoftmaxBeta2WithReference, CompareSoftmaxTest, 2.0f) + +#endif BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1