Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Re-enabling test_ndarray.test_cached #11950

Merged
merged 1 commit into from
Aug 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/python/unittest/test_ndarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ def test_iter():
for i in range(x.size):
assert same(y[i].asnumpy(), x[i].asnumpy())

@unittest.skip("test fails intermittently. temporarily disabled till it gets fixed. tracked at https://github.com/apache/incubator-mxnet/issues/8049")
@with_seed()
def test_cached():
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please put the link to the tracking issue in a comment like:

# @<your-id>: Tracked at https://github.com/apache/incubator-mxnet/issues/8049.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haojin2 Re-submitted with this change. Thanks.

sym = mx.sym.Convolution(kernel=(3, 3), num_filter=10) + 2
op = mx.nd.CachedOp(sym)
Expand Down