aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/test/test_tflite_model_semantic.py
diff options
context:
space:
mode:
authorJonas Ohlsson <jonas.ohlsson@arm.com>2021-09-01 15:57:21 +0200
committerJonas Ohlsson <jonas.ohlsson@arm.com>2021-09-15 10:48:08 +0100
commit0957e3ef4b94f17efb67429c88bab8ba650f78e8 (patch)
treef3e2600367bc7c89145657023b45b9dde2c316c2 /ethosu/vela/test/test_tflite_model_semantic.py
parent1a7527cd4ad56b49f120b10dc5e87a1e8f5a8122 (diff)
downloadethos-u-vela-0957e3ef4b94f17efb67429c88bab8ba650f78e8.tar.gz
MLBEDSW-5102 Update removal of memory only operators
Memory only operators such as Reshape, Squeeze and ExpandDims are removed in the graph optimiser step. - Added semantic check that memory only operators have same quantisation parameters on ifm/ofm. - Added support for the ExpandDims operator. - Addition and cleanup of related unit tests. - Removed TOSA from the generated SUPPORTED_OPS.md documentation. Signed-off-by: Jonas Ohlsson <jonas.ohlsson@arm.com> Change-Id: If848d8afc58c18806e10997ed94e4dae83f30879
Diffstat (limited to 'ethosu/vela/test/test_tflite_model_semantic.py')
-rw-r--r--ethosu/vela/test/test_tflite_model_semantic.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/ethosu/vela/test/test_tflite_model_semantic.py b/ethosu/vela/test/test_tflite_model_semantic.py
index 4c329844..84f99160 100644
--- a/ethosu/vela/test/test_tflite_model_semantic.py
+++ b/ethosu/vela/test/test_tflite_model_semantic.py
@@ -458,3 +458,57 @@ def test_mean_axis():
assert semantic_checker.is_operator_semantic_valid(op)
op = create_mean([1, 6, 6, 16], [1, 1, 1, 16], [2, 1], DataType.int8, {"keep_dims": True})
assert semantic_checker.is_operator_semantic_valid(op)
+
+
+def test_matching_in_out_quant():
+ # quantisation parameters of ifm and ofm should match.
+ quant = testutil.default_quant_params()
+ # create reshape op
+ ifm_shape = [64, 16]
+ ofm_shape = [1, 4, 16, 16]
+ ifm = create_const_tensor("reshape_in", ifm_shape, DataType.uint8, np.zeros(ifm_shape))
+ ifm.quantization = quant
+ ofm = create_const_tensor("reshape_out", ofm_shape, DataType.uint8, np.zeros(ofm_shape))
+ ofm.quantization = quant.clone()
+ shape_tens = create_const_tensor("shape", [1], DataType.int32, ofm_shape)
+ op = testutil.create_op(Op.Reshape, [ifm, shape_tens], ofm, set_ifm_ofm_shapes=False)
+ op.attrs["new_shape"] = ofm_shape
+
+ # Matching quantisation parameters
+ assert semantic_checker.is_operator_semantic_valid(op)
+
+ # Different zp
+ ofm.quantization.zero_point = 32
+ assert not semantic_checker.is_operator_semantic_valid(op)
+
+ # Different scale
+ ofm.quantization.zero_point = 0
+ ofm.quantization.scale_f32 = 0.9
+ assert not semantic_checker.is_operator_semantic_valid(op)
+
+ # Squeeze op diff quant
+ # create squeeze op
+ ifm_shape = [1, 1, 1, 1001]
+ ofm_shape = [1, 1001]
+ ifm = create_const_tensor("squeeze_in", ifm_shape, DataType.uint8, np.zeros(ifm_shape))
+ ifm.quantization = quant
+ ofm = create_const_tensor("squeeze_out", ofm_shape, DataType.uint8, np.zeros(ofm_shape))
+ ofm.quantization = quant.clone()
+ ofm.quantization.zero_point = 32
+ op = testutil.create_op(Op.Squeeze, [ifm], ofm, set_ifm_ofm_shapes=False)
+ op.attrs["squeeze_dims"] = [1, 2]
+ assert not semantic_checker.is_operator_semantic_valid(op)
+
+ # ExpandDims diff quant
+ quant = testutil.default_quant_params()
+ # create expand_dims op
+ ifm_shape = [4, 16, 16]
+ ofm_shape = [1, 4, 16, 16]
+ ifm = create_const_tensor("expand_dims_in", ifm_shape, DataType.uint8, np.zeros(ifm_shape))
+ ifm.quantization = quant
+ ofm = create_const_tensor("expand_dims_out", ofm_shape, DataType.uint8, np.zeros(ofm_shape))
+ ofm.quantization = quant.clone()
+ ofm.quantization.zero_point = 32
+ dim = create_const_tensor("expand_dims_dim", [], DataType.uint8, 0)
+ op = testutil.create_op(Op.ExpandDims, [ifm, dim], ofm, set_ifm_ofm_shapes=False)
+ assert not semantic_checker.is_operator_semantic_valid(op)