From fe9cad851304b10ca353328abc372e1b7a8cf6d8 Mon Sep 17 00:00:00 2001 From: Elena Zhelezina Date: Tue, 30 Jun 2020 22:31:43 +0100 Subject: [PATCH] Fix tests. Change-Id: I9e477a169859472b2bbd0682395c466a42ac7c9f --- tensorflow/lite/testing/op_tests/concat.py | 2 +- tensorflow/lite/testing/op_tests/conv.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/lite/testing/op_tests/concat.py b/tensorflow/lite/testing/op_tests/concat.py index fa3bc94eb7a..807cada9237 100644 --- a/tensorflow/lite/testing/op_tests/concat.py +++ b/tensorflow/lite/testing/op_tests/concat.py @@ -57,7 +57,7 @@ def make_concat_tests(options): "axis": [1], "type": [tf.float32], "fully_quantize": [False], - "quantize_mode_16x8": [True], + "quantize_mode_16x8": [False], "dynamic_range_quantize": [True], }] diff --git a/tensorflow/lite/testing/op_tests/conv.py b/tensorflow/lite/testing/op_tests/conv.py index 74ce1a0e6c9..8c5ec92e875 100644 --- a/tensorflow/lite/testing/op_tests/conv.py +++ b/tensorflow/lite/testing/op_tests/conv.py @@ -51,7 +51,7 @@ def make_conv_tests(options): "data_format": ["NHWC"], # TODO(aselle): NCHW would be good "constant_filter": [True, False], "channel_multiplier": [1, 2], - "fully_quantize": [False], + "fully_quantize": [True], "quantize_mode_16x8": [True], "dynamic_range_quantize": [False], },