diff --git a/tests/python/gpu/test_gluon_gpu.py b/tests/python/gpu/test_gluon_gpu.py index 95835fd77e9e..b60814a47a81 100644 --- a/tests/python/gpu/test_gluon_gpu.py +++ b/tests/python/gpu/test_gluon_gpu.py @@ -456,6 +456,7 @@ def get_net(num_ops): @with_seed() +@unittest.skip('skippping temporarily, tracked by /~https://github.com/apache/incubator-mxnet/issues/14970') def test_bulking(): # test case format: (max_fwd_segment_size, max_bwd_segment_size, enable_bulking_in_training) test_cases = [(0, 0, True), (1, 1, True), (15, 15, False), diff --git a/tests/python/gpu/test_operator_gpu.py b/tests/python/gpu/test_operator_gpu.py index 392d0cfbe3f3..2a1583ed639e 100644 --- a/tests/python/gpu/test_operator_gpu.py +++ b/tests/python/gpu/test_operator_gpu.py @@ -2159,6 +2159,7 @@ def _test_bulking_in_process(seed, time_per_iteration): time_per_iteration.value = (time.time() - start) / num_iterations @with_seed() +@unittest.skip('skippping temporarily, tracked by /~https://github.com/apache/incubator-mxnet/issues/14970') def test_bulking(): # test case format: (max_fwd_segment_size, max_bwd_segment_size, enable_bulking_in_training) test_cases = [(0,0,True), (1,1,True), (15,15,False), (15,0,True), (0,15,True), (15,15,True)]