From: Tianqi Chen Date: Sat, 1 Aug 2020 03:24:29 +0000 (-0700) Subject: [TEST] Temporary disable conv2d grad strided flaky test (#6183) X-Git-Tag: upstream/0.7.0~324 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1823a7b7007d7d7dfef3cdaf5cb60198fd853517;p=platform%2Fupstream%2Ftvm.git [TEST] Temporary disable conv2d grad strided flaky test (#6183) --- diff --git a/tests/python/relay/test_op_grad_level2.py b/tests/python/relay/test_op_grad_level2.py index d898451..7985836 100644 --- a/tests/python/relay/test_op_grad_level2.py +++ b/tests/python/relay/test_op_grad_level2.py @@ -148,7 +148,8 @@ def verify_conv2d_grad(dshape, wshape, strides, padding, dilation, groups=1, mod def test_conv2d_grad(): verify_conv2d_grad((1, 4, 16, 16), (16, 4, 3, 3), [1, 1], [1, 1], [1, 1]) verify_conv2d_grad((1, 4, 16, 16), (16, 4, 1, 1), [1, 1], [0, 0], [1, 1]) - verify_conv2d_grad((1, 4, 16, 16), (16, 4, 1, 1), [2, 2], [0, 0], [1, 1]) + # TODO(@vinx13) recover the test after we fix the conv2d grad. + # verify_conv2d_grad((1, 4, 16, 16), (16, 4, 1, 1), [2, 2], [0, 0], [1, 1]) verify_conv2d_grad((1, 4, 16, 16), (16, 4, 3, 3), [1, 1], [1, 1], [1, 1], mode='first_order')