From 9b3791817c32529dfeddae57c29c2abe19311fc4 Mon Sep 17 00:00:00 2001 From: Dwight Lidman Date: Mon, 15 Mar 2021 19:06:10 +0100 Subject: MLBEDSW-4215: Add support for MEAN to match QuantizedMeanOrSum implementation This commit adds support for emulating the behavior of the QuantizedMeanOrSum implementation of MEAN in TensorFlow Lite. Signed-off-by: Dwight Lidman Change-Id: Ifd24e0e678e2f85cd66ab82deeaaf010d5351b1e --- ethosu/vela/test/test_supported_operators.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ethosu/vela/test/test_supported_operators.py') diff --git a/ethosu/vela/test/test_supported_operators.py b/ethosu/vela/test/test_supported_operators.py index 34ddb900..aad2849a 100644 --- a/ethosu/vela/test/test_supported_operators.py +++ b/ethosu/vela/test/test_supported_operators.py @@ -858,13 +858,6 @@ def test_mean_dtype(): assert not support.is_operator_supported(op) -def test_mean_properties(): - op = create_mean([1, 6, 6, 256], [1, 1, 256], [1, 2], DataType.uint8, {}) - assert support.is_operator_supported(op) - op.ifm.quantization.zero_point = 55 - assert not support.is_operator_supported(op) - - def test_mean_axis(): op = create_mean([1, 6, 6, 16], [1, 1, 1, 16], [1], DataType.int8, {"keep_dims": True}) assert not support.is_operator_supported(op) -- cgit v1.2.1