This is an automated email from the ASF dual-hosted git repository.

mbrookhart pushed a commit to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit 90efe241f725618c4cd70ff921cb658e1db1b742
Author: Matthew Brookhart <mbrookh...@octoml.ai>
AuthorDate: Thu Jul 1 07:33:30 2021 -0700

    skip a test until update complete
---
 tests/python/frontend/onnx/test_forward.py | 62 +++++++++++++++---------------
 1 file changed, 32 insertions(+), 30 deletions(-)

diff --git a/tests/python/frontend/onnx/test_forward.py 
b/tests/python/frontend/onnx/test_forward.py
index 83049ee..544b8bd 100644
--- a/tests/python/frontend/onnx/test_forward.py
+++ b/tests/python/frontend/onnx/test_forward.py
@@ -2696,26 +2696,6 @@ def test_convtranspose():
             repeat(1, D),
             repeat(1, D),
         )
-        # Convolution with autopadding
-        verify_convtranspose_with_padding(
-            (1, 1) + repeat(5, D),
-            (1, 1) + repeat(3, D),
-            None,
-            repeat(3, D),
-            repeat(1, D),
-            repeat(1, D),
-            auto_pad="SAME_UPPER",
-        )
-        # Convolution with valid autopadding
-        verify_convtranspose_with_padding(
-            (1, 1) + repeat(5, D),
-            (1, 1) + repeat(3, D),
-            None,
-            repeat(3, D),
-            repeat(1, D),
-            repeat(1, D),
-            auto_pad="VALID",
-        )
         # Convolution with unset padding
         verify_convtranspose_with_padding(
             (1, 1) + repeat(5, D),
@@ -2726,16 +2706,38 @@ def test_convtranspose():
             repeat(1, D),
             True,
         )
-        # Convolution with non uniform stride
-        verify_convtranspose_with_padding(
-            (1, 1) + repeat(5, D),
-            (1, 1) + repeat(3, D),
-            None,
-            repeat(3, D),
-            repeat(2, D),
-            repeat(1, D),
-            auto_pad="SAME_UPPER",
-        )
+        ## TODO(mbrookhart): renable autopad tests when CI ONNX
+        ## and ONNX runtime match versions
+        # # Convolution with autopadding
+        # verify_convtranspose_with_padding(
+        #     (1, 1) + repeat(5, D),
+        #     (1, 1) + repeat(3, D),
+        #     None,
+        #     repeat(3, D),
+        #     repeat(1, D),
+        #     repeat(1, D),
+        #     auto_pad="SAME_UPPER",
+        # )
+        # # Convolution with valid autopadding
+        # verify_convtranspose_with_padding(
+        #     (1, 1) + repeat(5, D),
+        #     (1, 1) + repeat(3, D),
+        #     None,
+        #     repeat(3, D),
+        #     repeat(1, D),
+        #     repeat(1, D),
+        #     auto_pad="VALID",
+        # )
+        # # Convolution with non uniform stride
+        # verify_convtranspose_with_padding(
+        #     (1, 1) + repeat(5, D),
+        #     (1, 1) + repeat(3, D),
+        #     None,
+        #     repeat(3, D),
+        #     repeat(2, D),
+        #     repeat(1, D),
+        #     auto_pad="SAME_UPPER",
+        # )
         # Convolution with dilation
         # TODO(mbrookhart): Relay doesn't currently support convtranspose with 
dilation
         # verify_convtranspose_with_padding(

Reply via email to