You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ma...@apache.org on 2018/08/17 14:41:54 UTC

[incubator-mxnet] branch master updated: Disable flaky test: test_operator_gpu.test_depthwise_convolution (#12204)

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

marcoabreu 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 6876820  Disable flaky test: test_operator_gpu.test_depthwise_convolution (#12204)
6876820 is described below

commit 6876820f20fed3f997a7143526085d8cf5c426a9
Author: Anton Chernov <me...@gmail.com>
AuthorDate: Fri Aug 17 16:41:42 2018 +0200

    Disable flaky test: test_operator_gpu.test_depthwise_convolution (#12204)
---
 tests/python/unittest/test_operator.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/python/unittest/test_operator.py b/tests/python/unittest/test_operator.py
index df09a7b..1c0f940 100644
--- a/tests/python/unittest/test_operator.py
+++ b/tests/python/unittest/test_operator.py
@@ -1619,6 +1619,7 @@ def test_convolution_grouping():
             np.testing.assert_allclose(arr1.asnumpy(), arr2.asnumpy(), rtol=1e-3, atol=1e-4)
 
 
+@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12203")
 @with_seed()
 def test_depthwise_convolution():
     for dim in [1,2]: