From 300e2308db9e13f4e952466354f7e0b1f8c7a84d Mon Sep 17 00:00:00 2001 From: Hao Jin Date: Wed, 25 Jul 2018 21:14:19 +0000 Subject: [PATCH] get rid of fixed seed for test_operator/test_operator_gpu.test_dot --- 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 a1e6530641f2..d98be0beac79 100644 --- a/tests/python/unittest/test_operator.py +++ b/tests/python/unittest/test_operator.py @@ -2506,8 +2506,9 @@ def test_stn_valid_sampling(): ) + target_shape)) -# Seed set because the test is not robust enough to operate on random data -@with_seed(1234) +# @haojin2: Getting rid of fixed seed as flakiness could not be reproduced, +# tracked at https://github.com/apache/incubator-mxnet/issues/11714 +@with_seed() def test_dot(): ctx=default_context() dtypes = ['float32', 'float64']