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/09/21 07:32:28 UTC

[incubator-mxnet] branch master updated: Enable gluon multi worker data loader test (#12315)

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 e82eef9  Enable gluon multi worker data loader test (#12315)
e82eef9 is described below

commit e82eef91360d6cd80048703c6bb5e2685c6cf71a
Author: Sandeep Krishnamurthy <sa...@gmail.com>
AuthorDate: Fri Sep 21 00:32:14 2018 -0700

    Enable gluon multi worker data loader test (#12315)
---
 tests/python/unittest/test_gluon_data.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/python/unittest/test_gluon_data.py b/tests/python/unittest/test_gluon_data.py
index cc80aac..b32a59c 100644
--- a/tests/python/unittest/test_gluon_data.py
+++ b/tests/python/unittest/test_gluon_data.py
@@ -140,7 +140,7 @@ class Dataset(gluon.data.Dataset):
     def __getitem__(self, key):
         return mx.nd.full((10,), key)
 
-@unittest.skip("Somehow fails with MKL. Cannot reproduce locally")
+@with_seed()
 def test_multi_worker():
     data = Dataset()
     loader = gluon.data.DataLoader(data, batch_size=1, num_workers=5)