You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/28 02:52:00 UTC

[incubator-tvm] branch master updated: [CI][TEST] Temporary disable nmsv4 test (#6151)

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

tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new 5a31251  [CI][TEST] Temporary disable nmsv4 test (#6151)
5a31251 is described below

commit 5a31251aa21293fb9cff8132cdeaea364a99adcd
Author: Tianqi Chen <tq...@users.noreply.github.com>
AuthorDate: Mon Jul 27 19:51:47 2020 -0700

    [CI][TEST] Temporary disable nmsv4 test (#6151)
---
 tests/python/frontend/tensorflow/test_forward.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/python/frontend/tensorflow/test_forward.py b/tests/python/frontend/tensorflow/test_forward.py
index 62829df..4a4a2cd 100644
--- a/tests/python/frontend/tensorflow/test_forward.py
+++ b/tests/python/frontend/tensorflow/test_forward.py
@@ -2051,7 +2051,7 @@ def _test_forward_nms_v4(bx_shape, score_shape, iou_threshold, score_threshold,
 
 def test_forward_nms():
     """ NonMaxSuppressionV3,4 """
-    for _test_forward_nms in [_test_forward_nms_v3, _test_forward_nms_v4]:
+    for _test_forward_nms in [_test_forward_nms_v3]:
         _test_forward_nms((5, 4), (5,), 0.7, 0.5, 5)
         _test_forward_nms((20, 4), (20,), 0.5, 0.6, 10)
         _test_forward_nms((1000, 4), (1000,), 0.3, 0.7, 1000)