aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/test
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2022-09-02 14:36:54 +0100
committerNikhil Raj <nikhil.raj@arm.com>2022-09-07 09:52:14 +0100
commitce8204a528b3973b2dbf258095ab048a061263ea (patch)
tree6187e6bde3aac4ed17f951dbef45dc10e3e7d1f6 /src/backends/backendsCommon/test
parentae32665f266e04c1a9bedfe01a107e97e46a6b7c (diff)
downloadarmnn-ce8204a528b3973b2dbf258095ab048a061263ea.tar.gz
IVGCVSW-7209 Remove deprecated code due to be removed in 22.11
* Files deleted when Stabilizing the API Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I0ae73ee36968fa880761c10358bfa827be5fe054
Diffstat (limited to 'src/backends/backendsCommon/test')
-rw-r--r--src/backends/backendsCommon/test/CMakeLists.txt5
-rw-r--r--src/backends/backendsCommon/test/CommonTestUtils.hpp8
-rw-r--r--src/backends/backendsCommon/test/DataLayoutUtils.hpp9
-rw-r--r--src/backends/backendsCommon/test/DataTypeUtils.hpp9
-rw-r--r--src/backends/backendsCommon/test/WorkloadTestUtils.hpp8
-rw-r--r--src/backends/backendsCommon/test/layerTests/LayerTestResult.hpp16
6 files changed, 0 insertions, 55 deletions
diff --git a/src/backends/backendsCommon/test/CMakeLists.txt b/src/backends/backendsCommon/test/CMakeLists.txt
index c5b97ebf4c..5e283990f7 100644
--- a/src/backends/backendsCommon/test/CMakeLists.txt
+++ b/src/backends/backendsCommon/test/CMakeLists.txt
@@ -10,15 +10,12 @@ list(APPEND armnnBackendsCommonUnitTests_sources
BackendIdTests.cpp
BackendProfilingTests.cpp
BackendRegistryTests.cpp
- CommonTestUtils.hpp
ChannelShuffleEndToEndTestImpl.hpp
ComparisonEndToEndTestImpl.hpp
CompatibilityTests.cpp
ConcatEndToEndTestImpl.hpp
Convolution3dEndToEndTestImpl.hpp
CustomMemoryOptimizerStrategyTests.cpp
- DataLayoutUtils.hpp
- DataTypeUtils.hpp
DefaultAsyncExecuteTest.cpp
DepthToSpaceEndToEndTestImpl.hpp
DepthwiseConvolution2dEndToEndTests.hpp
@@ -59,7 +56,6 @@ list(APPEND armnnBackendsCommonUnitTests_sources
StridedSliceAsyncEndToEndTest.hpp
TensorCopyUtils.hpp
WorkloadFactoryHelper.hpp
- WorkloadTestUtils.hpp
layerTests/AbsTestImpl.cpp
layerTests/AbsTestImpl.hpp
layerTests/ActivationTestImpl.cpp
@@ -125,7 +121,6 @@ list(APPEND armnnBackendsCommonUnitTests_sources
layerTests/InstanceNormalizationTestImpl.hpp
layerTests/L2NormalizationTestImpl.cpp
layerTests/L2NormalizationTestImpl.hpp
- layerTests/LayerTestResult.hpp
layerTests/LogTestImpl.cpp
layerTests/LogTestImpl.hpp
layerTests/LogicalTestImpl.cpp
diff --git a/src/backends/backendsCommon/test/CommonTestUtils.hpp b/src/backends/backendsCommon/test/CommonTestUtils.hpp
deleted file mode 100644
index b1c9cdff0f..0000000000
--- a/src/backends/backendsCommon/test/CommonTestUtils.hpp
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "../../armnnTestUtils/CommonTestUtils.hpp"
-#pragma message("backendsCommon/test/CommonTestUtils.hpp has been deprecated, it is due for removal in 22.11 release." \
- " Please use from armnnTestUtils library, /src/armnnTestUtils/CommonTestUtils.hpp)
diff --git a/src/backends/backendsCommon/test/DataLayoutUtils.hpp b/src/backends/backendsCommon/test/DataLayoutUtils.hpp
deleted file mode 100644
index 86b86dfdc6..0000000000
--- a/src/backends/backendsCommon/test/DataLayoutUtils.hpp
+++ /dev/null
@@ -1,9 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include <armnnTestUtils/DataLayoutUtils.hpp>
-
-#pragma message("backendsCommon/test/DataLayoutUtils.hpp has been deprecated, it is due for removal " \
- "in 22.11 release. Please use public interface include/armnnTestUtils/DataLayoutUtils.hpp")
diff --git a/src/backends/backendsCommon/test/DataTypeUtils.hpp b/src/backends/backendsCommon/test/DataTypeUtils.hpp
deleted file mode 100644
index 101f286fc2..0000000000
--- a/src/backends/backendsCommon/test/DataTypeUtils.hpp
+++ /dev/null
@@ -1,9 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "../../armnnTestUtils/DataTypeUtils.hpp"
-
-#pragma message("backendsCommon/test/DataTypeUtils.hpp has been deprecated, it is due for removal in 22.11 release." \
- " Please use from armnnTestUtils library, /src/armnnTestUtils/DataTypeUtils.hpp)
diff --git a/src/backends/backendsCommon/test/WorkloadTestUtils.hpp b/src/backends/backendsCommon/test/WorkloadTestUtils.hpp
deleted file mode 100644
index 0377d5edd1..0000000000
--- a/src/backends/backendsCommon/test/WorkloadTestUtils.hpp
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "../../../armnnTestUtils/WorkloadTestUtils.hpp"
-#pragma message("src/backends/backendsCommon/test/WorkloadTestUtils.hpp has been deprecated, it is due for removal in"\
- " 22.11 release. Please use src/armnnTestUtils/WorkloadTestUtils.hpp instead.")
diff --git a/src/backends/backendsCommon/test/layerTests/LayerTestResult.hpp b/src/backends/backendsCommon/test/layerTests/LayerTestResult.hpp
deleted file mode 100644
index c24359fb1f..0000000000
--- a/src/backends/backendsCommon/test/layerTests/LayerTestResult.hpp
+++ /dev/null
@@ -1,16 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-// This file is deprecated and will be removed soon.
-// Please use the new header in armnnTestUtils instead.
-// This will use the new armnnTestUtils header.
-#include <armnnTestUtils/LayerTestResult.hpp>
-
-#pragma message("backendsCommon/test/layerTests/LayerTestResult.hpp has been deprecated, it is due for " \
- "removal in 22.11 release. Please use public interface include/armnnTestUtils/LayerTestResult.hpp")
-
-
-
-