From c75a1699acf14d708d3a91f227acfec3998952e9 Mon Sep 17 00:00:00 2001 From: Ankit Khedia <36249596+ankkhedia@users.noreply.github.com> Date: Thu, 2 Aug 2018 20:47:50 -0700 Subject: [PATCH] removed seed from flaky test (#11975) --- tests/python/unittest/test_operator.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/python/unittest/test_operator.py b/tests/python/unittest/test_operator.py index 418951fcbb0a..90e85d123d59 100644 --- a/tests/python/unittest/test_operator.py +++ b/tests/python/unittest/test_operator.py @@ -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