From d1628bffe27db398ff5c67c2e20f89e729f8bc31 Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Tue, 30 Aug 2022 14:27:10 +0100 Subject: IVGCVSW-7006 Remove deprecated code due to be removed in 22.08 * AddConv and AddDWConv with weights and bias * ResizeBilinearDescriptor * b,blacklist option in accuracy tool !android-nn-driver:8172 Signed-off-by: Teresa Charlin Change-Id: Ibbc04fd18be7f938b11590bf67cd7af103cb4d99 --- src/armnn/test/GraphTests.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/armnn/test/GraphTests.cpp') diff --git a/src/armnn/test/GraphTests.cpp b/src/armnn/test/GraphTests.cpp index 95421c5683..eea7ae824a 100644 --- a/src/armnn/test/GraphTests.cpp +++ b/src/armnn/test/GraphTests.cpp @@ -632,13 +632,13 @@ TEST_CASE("IConnectableLayerConstantTensorsByRef") TensorInfo weightsInfo = constInfo; ConstTensor weights(weightsInfo, weightData); DepthwiseConvolution2dDescriptor desc; - ARMNN_NO_DEPRECATE_WARN_BEGIN - // GetConstantTensorsByRef() returns {m_Weights, m_Bias} so we need to use the old AddDepthwiseConvolution2dLayer() - const auto depthwiseLayer = net->AddDepthwiseConvolution2dLayer(desc, weights, EmptyOptional(), "Depthwise"); - ARMNN_NO_DEPRECATE_WARN_END - const void* resultData = depthwiseLayer->GetConstantTensorsByRef()[0].get()->GetConstTensor(); - auto resultValue = reinterpret_cast(resultData); - CHECK(resultValue[0] == 3); + + const auto weightsLayer = net->AddConstantLayer(weights); + + const void* resultDataWeights = weightsLayer->GetConstantTensorsByRef()[0].get()->GetConstTensor(); + auto resultValueWeights = reinterpret_cast(resultDataWeights); + CHECK(resultValueWeights[0] == 3); + } } -- cgit v1.2.1