From b795982d4697eb36f04daa07c497842d1a57c308 Mon Sep 17 00:00:00 2001 From: Marco de Abreu Date: Thu, 28 Jun 2018 02:44:48 +0200 Subject: [PATCH] Add new disabled test --- tests/python/gpu/test_operator_gpu.py | 2 ++ tests/python/unittest/test_operator.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/python/gpu/test_operator_gpu.py b/tests/python/gpu/test_operator_gpu.py index 2d4b298a71b4..e4b1917f398d 100644 --- a/tests/python/gpu/test_operator_gpu.py +++ b/tests/python/gpu/test_operator_gpu.py @@ -87,6 +87,8 @@ def check_countsketch(in_dim,out_dim,n): a[j,i] = out_grad.asnumpy()[j, h[0,i]] * s[0,i] assert_almost_equal(a,arr_grad[0].asnumpy(),rtol=1e-3, atol=1e-12) + +@unittest.skip("test fails intermittently. temporarily disabled till it gets fixed. tracked at https://github.com/apache/incubator-mxnet/issues/10988") @with_seed(0) def test_countsketch(): nrepeat = 2 diff --git a/tests/python/unittest/test_operator.py b/tests/python/unittest/test_operator.py index 092613f21479..1a1c548c595b 100644 --- a/tests/python/unittest/test_operator.py +++ b/tests/python/unittest/test_operator.py @@ -186,6 +186,8 @@ def test_rnnrelu_sym(): check_rnn_consistency(fused, stack, T, N, I, H, 'add') check_rnn_consistency(fused, stack, T, N, I, H, 'null') + +@unittest.skip("test fails intermittently. temporarily disabled till it gets fixed. tracked at https://github.com/apache/incubator-mxnet/issues/11410") @with_seed() def test_rnnrelu_bidirectional(): T, N, I, H = 5, 20, 200, 200