Skip to content

Commit

Permalink
Disables test_bulking due to flakyness (apache#14971)
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva authored and haohuw committed Jun 23, 2019
1 parent 9e13270 commit a6f230d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/python/gpu/test_gluon_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
1 change: 1 addition & 0 deletions tests/python/gpu/test_operator_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit a6f230d

Please sign in to comment.