From 3dfb19a9804c589a6089453f01c7b491d6bda014 Mon Sep 17 00:00:00 2001 From: Zixuan Wei Date: Tue, 20 Aug 2019 09:59:55 +0800 Subject: [PATCH] Discard needless test cases in `test_convolution_independent_gradients` (#15939) * Drop needless num_bases in test of conv * Trigger CI * Re-trigger CI --- tests/python/unittest/test_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/unittest/test_operator.py b/tests/python/unittest/test_operator.py index e28fe7869f20..c360db9f01a5 100644 --- a/tests/python/unittest/test_operator.py +++ b/tests/python/unittest/test_operator.py @@ -2009,7 +2009,7 @@ def test_convolution_independent_gradients(): reqs = ["null", "write", "add"] var_names = ["x", "w", "b"] dims = [1, 2] - num_bases = [1, 16, 64] + num_bases = [1, 8] kernel_xs = [3, 5] stride_xs = [1, 2] pad_xs = [0, 1]