Skip to content

Commit

Permalink
Fix the relay test
Browse files Browse the repository at this point in the history
  • Loading branch information
abergeron committed Aug 4, 2020
1 parent b6ba4bf commit b470b9a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/python/relay/test_op_level2.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,8 +663,7 @@ def test_conv3d_transpose_ncdhw_run():

data = np.random.uniform(size=dshape).astype(dtype)
kernel = np.random.uniform(size=kshape).astype(dtype)

ref_res = tvm.topi.testing.conv3d_transpose_ncdhw_python(data, kernel, 1, 1)
ref_res = tvm.topi.testing.conv3d_transpose_ncdhw_python(data, kernel, 1, 1, 0)

for target, ctx in ctx_list():
intrp1 = relay.create_executor("graph", ctx=ctx, target=target)
Expand Down

0 comments on commit b470b9a

Please sign in to comment.