You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by sk...@apache.org on 2018/10/09 21:30:39 UTC

[incubator-mxnet] branch master updated: Disabled flaky test: test_mkldnn.test_Deconvolution (#12770)

This is an automated email from the ASF dual-hosted git repository.

skm 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 c98b19e  Disabled flaky test: test_mkldnn.test_Deconvolution (#12770)
c98b19e is described below

commit c98b19e2d108a3861d89b475927e8a21a913e540
Author: Anton Chernov <me...@gmail.com>
AuthorDate: Tue Oct 9 23:30:28 2018 +0200

    Disabled flaky test: test_mkldnn.test_Deconvolution (#12770)
---
 tests/python/mkl/test_mkldnn.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/python/mkl/test_mkldnn.py b/tests/python/mkl/test_mkldnn.py
index 53e4051..e549009 100644
--- a/tests/python/mkl/test_mkldnn.py
+++ b/tests/python/mkl/test_mkldnn.py
@@ -298,6 +298,7 @@ def test_activation():
         check_activation_training(stype)
 
 
+@with_seed()
 def test_convolution():
     def check_convolution_training(stype):
         for shape in [(3, 3, 10), (3, 3, 10, 10)]:
@@ -322,6 +323,8 @@ def test_convolution():
         check_convolution_training(stype)
 
 
+@with_seed()
+@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12579")
 def test_Deconvolution():
     def check_Deconvolution_training(stype):
         for shape in [(3, 3, 10), (3, 3, 10, 10)]: