From 7c75e336fbeeec052a1cb90c68d1caece332c176 Mon Sep 17 00:00:00 2001 From: Declan-ARM Date: Tue, 12 Mar 2024 16:40:25 +0000 Subject: IVGCVSW-7853 Assert audit and removal * src/armnn * src/armnn/layers Signed-off-by: Declan-ARM Change-Id: Ic78cbbb59e90fbb15f893205a358c45264243721 --- src/armnn/layers/DequantizeLayer.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/armnn/layers/DequantizeLayer.cpp') diff --git a/src/armnn/layers/DequantizeLayer.cpp b/src/armnn/layers/DequantizeLayer.cpp index b398cf6e0d..79ab969719 100644 --- a/src/armnn/layers/DequantizeLayer.cpp +++ b/src/armnn/layers/DequantizeLayer.cpp @@ -1,5 +1,5 @@ // -// Copyright © 2017,2019-2023 Arm Ltd and Contributors. All rights reserved. +// Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "DequantizeLayer.hpp" @@ -41,7 +41,12 @@ void DequantizeLayer::ValidateTensorShapesFromInputs() std::vector inferredShapes = InferOutputShapes({ GetInputSlot(0).GetTensorInfo().GetShape() }); - ARMNN_ASSERT(inferredShapes.size() == 1); + if (inferredShapes.size() != 1) + { + throw armnn::LayerValidationException("inferredShapes has " + + std::to_string(inferredShapes.size()) + + " elements - should only have 1."); + } ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "DequantizeLayer"); } -- cgit v1.2.1