Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Disables test_bulking due to flakyness
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva committed May 17, 2019
1 parent 60342d6 commit eb0b97b
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 eb0b97b

Please sign in to comment.