You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2018/06/30 17:15:20 UTC

[incubator-mxnet] branch master updated: Disable test_norm (#11510)

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

zhasheng 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 b22ce0b  Disable test_norm (#11510)
b22ce0b is described below

commit b22ce0ba44b6170ee52d43ee3c6f93d251499a24
Author: Marco de Abreu <ma...@users.noreply.github.com>
AuthorDate: Sat Jun 30 19:15:04 2018 +0200

    Disable test_norm (#11510)
---
 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 28ad555..461fb63 100644
--- a/tests/python/unittest/test_operator.py
+++ b/tests/python/unittest/test_operator.py
@@ -3030,6 +3030,7 @@ def check_layer_normalization(in_shape, axis, eps, dtype=np.float32, forward_che
                                grad_nodes={'data': req, 'gamma': req, 'beta': req},
                                numeric_eps=1e-2, rtol=1e-2, atol=1e-2)
 
+@unittest.skip("Flaky test: https://github.com/apache/incubator-mxnet/issues/11509")
 @with_seed()
 def test_norm():
     def l1norm(input_data, axis=0, keepdims=True):