From 8217c8e4f488eb32733c481ab3a4d905069479f1 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 11 Nov 2019 18:24:22 +0000 Subject: COMPMID-2895: Remove QASYMM8_PER_CHANNEL data type Change-Id: I2d1b77370f8eceeaeae95306b4db5d90ababb76f Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/2266 Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- tests/validation/Helpers.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'tests/validation/Helpers.cpp') diff --git a/tests/validation/Helpers.cpp b/tests/validation/Helpers.cpp index 95a5548628..e362e05b81 100644 --- a/tests/validation/Helpers.cpp +++ b/tests/validation/Helpers.cpp @@ -335,15 +335,6 @@ std::pair get_symm_quantized_per_channel_bounds(const QuantizationInfo return std::pair { min_bound, max_bound }; } -std::pair get_asymm_quantized_per_channel_bounds(const QuantizationInfo &quant_info, float min, float max, size_t channel_id) -{ - ARM_COMPUTE_ERROR_ON_MSG(min > max, "min must be lower equal than max"); - - const int min_bound = quantize_qasymm8_per_channel(min, quant_info, channel_id); - const int max_bound = quantize_qasymm8_per_channel(max, quant_info, channel_id); - return std::pair { min_bound, max_bound }; -} - template void get_tile(const SimpleTensor &in, SimpleTensor &roi, const Coordinates &coord); template void get_tile(const SimpleTensor &in, SimpleTensor &roi, const Coordinates &coord); template void get_tile(const SimpleTensor &in, SimpleTensor &roi, const Coordinates &coord); -- cgit v1.2.1