This is an automated email from the ASF dual-hosted git repository.
haibin 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 011a0dc Remove fixed seed for test_sparse_nd_save_load (#11920)
011a0dc is described below
commit 011a0dc7c1c47daeb39424999c33827aabf7ce95
Author: Kalyanee Chendke <[email protected]>
AuthorDate: Sat Jul 28 11:00:35 2018 -0700
Remove fixed seed for test_sparse_nd_save_load (#11920)
* Remove fixed seed for test_sparse_nd_save_load
* Add comments related to the commit
---
tests/python/unittest/test_sparse_ndarray.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/python/unittest/test_sparse_ndarray.py
b/tests/python/unittest/test_sparse_ndarray.py
index 975f576..508f523 100644
--- a/tests/python/unittest/test_sparse_ndarray.py
+++ b/tests/python/unittest/test_sparse_ndarray.py
@@ -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']