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

Commit

Permalink
Remove fixed seed for test_sparse_nd_save_load (#11920)
Browse files Browse the repository at this point in the history
* Remove fixed seed for test_sparse_nd_save_load

* Add comments related to the commit
  • Loading branch information
kalyc authored and eric-haibin-lin committed Jul 28, 2018
1 parent bd3fc88 commit 011a0dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/python/unittest/test_sparse_ndarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,9 @@ def test_sparse_nd_pickle():
assert same(a.asnumpy(), b.asnumpy())


@with_seed(0)
# @kalyc: Getting rid of fixed seed as flakiness could not be reproduced
# tracked at https://github.com/apache/incubator-mxnet/issues/11741
@with_seed()
def test_sparse_nd_save_load():
repeat = 1
stypes = ['default', 'row_sparse', 'csr']
Expand Down

0 comments on commit 011a0dc

Please sign in to comment.