You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ha...@apache.org on 2018/08/08 01:34:04 UTC

[incubator-mxnet] branch master updated: removed fixed seed 1234 (#12072)

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

haibin 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 cb94be9  removed fixed seed 1234 (#12072)
cb94be9 is described below

commit cb94be94213edc787d69d65eca4d90ba2fcaad6f
Author: Sam Skalicky <sa...@gmail.com>
AuthorDate: Tue Aug 7 18:33:55 2018 -0700

    removed fixed seed 1234 (#12072)
    
    tested with 100k runs, no failures
---
 tests/python/gpu/test_operator_gpu.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/python/gpu/test_operator_gpu.py b/tests/python/gpu/test_operator_gpu.py
index 9dbf5f0..d8d34ef 100644
--- a/tests/python/gpu/test_operator_gpu.py
+++ b/tests/python/gpu/test_operator_gpu.py
@@ -1445,7 +1445,7 @@ def test_unfuse():
         check_rnn_consistency(stack, fused)
 
 
-@with_seed(1234)
+@with_seed()
 def test_psroipooling_with_type():
     arg_params = {
         'psroipool_rois': np.array([[0, 10, 22, 161, 173], [0, 20, 15, 154, 160]])}