Skip to content

Commit

Permalink
removed seed from flaky test (apache#11975)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankkhedia authored and aaronmarkham committed Aug 6, 2018
1 parent 1313564 commit c75a169
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/python/unittest/test_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4963,8 +4963,9 @@ def _make_lower_triangle_symm(a, ndims, m, dtype=np.float32):
lt_mask = mx.sym.reshape(lt_mask, shape=shp)
return mx.sym.broadcast_mul(a, lt_mask)

# Seed set because the test is not robust enough to operate on random data
@with_seed(42)
# @ankkhedia: Getting rid of fixed seed as flakiness could not be reproduced
# tracked at https://github.com/apache/incubator-mxnet/issues/11718
@with_seed()
def test_laop():
dtype = np.float64
rtol_fw = 1e-7
Expand Down

0 comments on commit c75a169

Please sign in to comment.