aboutsummaryrefslogtreecommitdiff
path: root/src/backends/tosaReference
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2023-04-05 12:51:10 +0100
committerMike Kelly <mike.kelly@arm.com>2023-04-05 15:08:02 +0100
commit1ec5f85a0b98785fee16dd908b5d193e2b8a52db (patch)
treef6a7b28e078153026424f1916fde8e34e1e2dc3e /src/backends/tosaReference
parent1bf35f5b8b480b2af3e904cb64e4bd5c6147b0fb (diff)
downloadarmnn-1ec5f85a0b98785fee16dd908b5d193e2b8a52db.tar.gz
IVGCVSW-7673 Fix for failing build
* Added ARMNN_NO_DEPRECATE_WARN_ to test files for Tosa and DynamicSample. Signed-off-by: Mike Kelly <mike.kelly@arm.com> Change-Id: I2f1b771d719cf637e17cc423cd2211db9643a6e8
Diffstat (limited to 'src/backends/tosaReference')
-rw-r--r--src/backends/tosaReference/test/TosaRefOptimizedNetworkTests.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backends/tosaReference/test/TosaRefOptimizedNetworkTests.cpp b/src/backends/tosaReference/test/TosaRefOptimizedNetworkTests.cpp
index 64b6805d2c..86cbc4e3c0 100644
--- a/src/backends/tosaReference/test/TosaRefOptimizedNetworkTests.cpp
+++ b/src/backends/tosaReference/test/TosaRefOptimizedNetworkTests.cpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2022-2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -21,7 +21,9 @@ TEST_CASE("SimpleSupportedOptimizedNetwork")
auto inputLayer1 = network->AddInputLayer(0, "input_1");
auto inputLayer2 = network->AddInputLayer(1, "input_2");
+ ARMNN_NO_DEPRECATE_WARN_BEGIN
auto addLayer = network->AddAdditionLayer("add");
+ ARMNN_NO_DEPRECATE_WARN_END
auto outputLayer = network->AddOutputLayer(2, "output");
armnn::TensorInfo tensorInfo{{4}, armnn::DataType::Float32};