[Flaky] TFLite quantized conv test (#6084)
authorAnimesh Jain <anijain@umich.edu>
Fri, 24 Jul 2020 16:40:25 +0000 (09:40 -0700)
committerGitHub <noreply@github.com>
Fri, 24 Jul 2020 16:40:25 +0000 (09:40 -0700)
tests/python/frontend/tflite/test_forward.py

index 46d4b46..69268f3 100644 (file)
@@ -785,6 +785,7 @@ def _test_tflite2_quantized_convolution(input_shape, kernel_shape,
 def _test_tflite2_quantized_depthwise_convolution(input_shape, kernel_shape,
         dilations, strides, padding, data_format, depth_multiplier):
     """One iteration of TFLite2 quantized depthwise convolution with given shapes and attributes"""
+
     data_format = "channels_last" if "NHWC" else "channels_first"
     data = np.random.uniform(0, 1, input_shape).astype('float32')
     kernel = np.random.uniform(0, 1, kernel_shape).astype('float32')
@@ -914,13 +915,14 @@ def test_forward_convolution():
         _test_tflite2_quantized_convolution([1, 17, 17, 19], [3, 3, 19, 19], [1, 1], [2, 2], 'VALID', 'NHWC')
         _test_tflite2_quantized_convolution([1, 17, 17, 124], [1, 1, 124, 19], [1, 1], [1, 1], 'SAME', 'NHWC')
 
+        # Disable as tests are flaky - https://github.com/apache/incubator-tvm/issues/6064
         # depthwise convolution
-        _test_tflite2_quantized_depthwise_convolution([1, 8, 8, 128], [1, 1, 128, 1], [1, 1], [1, 1],
-                                                      'SAME', 'NHWC', 1)
-        _test_tflite2_quantized_depthwise_convolution([1, 17, 17, 12], [3, 3, 12, 1], [1, 1], [2, 2],
-                                                      'VALID', 'NHWC', 1)
-        _test_tflite2_quantized_depthwise_convolution([1, 24, 24, 3], [7, 7, 3, 8], [1, 1], [2, 2],
-                                                      'SAME', 'NHWC', 8)
+        _test_tflite2_quantized_depthwise_convolution([1, 8, 8, 128], [1, 1, 128, 1], [1, 1], [1, 1],
+                                                      'SAME', 'NHWC', 1)
+        _test_tflite2_quantized_depthwise_convolution([1, 17, 17, 12], [3, 3, 12, 1], [1, 1], [2, 2],
+                                                      'VALID', 'NHWC', 1)
+        _test_tflite2_quantized_depthwise_convolution([1, 24, 24, 3], [7, 7, 3, 8], [1, 1], [2, 2],
+                                                      'SAME', 'NHWC', 8)