You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2019/05/19 01:52:24 UTC

[incubator-mxnet] branch master updated: Disables test_bulking due to flakyness (#14971)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8c4a0e6  Disables test_bulking due to flakyness (#14971)
8c4a0e6 is described below

commit 8c4a0e62b39c957a28ad625839eff76f67d55404
Author: perdasilva <pe...@gmail.com>
AuthorDate: Sun May 19 03:52:03 2019 +0200

    Disables test_bulking due to flakyness (#14971)
---
 tests/python/gpu/test_gluon_gpu.py    | 1 +
 tests/python/gpu/test_operator_gpu.py | 1 +
 2 files changed, 2 insertions(+)

diff --git a/tests/python/gpu/test_gluon_gpu.py b/tests/python/gpu/test_gluon_gpu.py
index 95835fd..b60814a 100644
--- a/tests/python/gpu/test_gluon_gpu.py
+++ b/tests/python/gpu/test_gluon_gpu.py
@@ -456,6 +456,7 @@ def _test_bulking_in_process(seed, time_per_iteration):
 
 
 @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 392d0cf..2a1583e 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)]