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

Commit

Permalink
Disable tests impacted by bugs in tvmop
Browse files Browse the repository at this point in the history
  • Loading branch information
leezu committed Mar 23, 2020
1 parent a57e5a2 commit b9bb072
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/python/unittest/test_deferred_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,10 @@ def f(a, *, nd):


def test_dc_simple_boolean_indexing():
if mx.test_utils.default_context() == mx.gpu(0) and mx.runtime.().is_enabled("TVM_OP"):
# Skip due to https://github.com/apache/incubator-mxnet/issues/17886
return

def setup(*, nd):
assert nd is mx.np
x = mx.np.array([[0, 1], [1, 1], [2, 2]])
Expand Down Expand Up @@ -468,6 +472,10 @@ def forward(self, x):


def test_dc_hybridblock_dynamic_shape():
if mx.test_utils.default_context() == mx.gpu(0) and mx.runtime.().is_enabled("TVM_OP"):
# Skip due to https://github.com/apache/incubator-mxnet/issues/17886
return

class MyBlock(mx.gluon.HybridBlock):
def __init__(self, *, prefix=None, params=None):
super().__init__(prefix, params)
Expand Down

0 comments on commit b9bb072

Please sign in to comment.