From ed0604e69c89aeb6a34372f901fb5970db40032f Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Wed, 8 Nov 2023 14:01:27 +0000 Subject: IVGCVSW-8140 Prelu restriction in quantization not needed Signed-off-by: Teresa Charlin Change-Id: Ic3c42db6fd87b379b42d610e0d0f56f55580268d --- src/armnnTfLiteParser/TfLiteParser.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/armnnTfLiteParser/TfLiteParser.cpp b/src/armnnTfLiteParser/TfLiteParser.cpp index b3f5b560eb..67591b9339 100644 --- a/src/armnnTfLiteParser/TfLiteParser.cpp +++ b/src/armnnTfLiteParser/TfLiteParser.cpp @@ -3088,7 +3088,6 @@ void TfLiteParserImpl::ParsePrelu(size_t subgraphIndex, size_t operatorIndex) } armnn::TensorInfo outputTensorInfo = OutputTensorInfoFromInputs(subgraphIndex, operatorIndex, layer, 0, {0, 1}); - CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); layer->GetOutputSlot(0).SetTensorInfo(outputTensorInfo); auto outputTensorIndexes = AsUnsignedVector(GetOutputTensorIds(m_Model, subgraphIndex, operatorIndex)); -- cgit v1.2.1