Skip to content

Commit

Permalink
Restore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jroesch committed Feb 5, 2019
1 parent e8cb96d commit 7ae24fb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion python/tvm/relay/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _convert(arg, cargs):
field_args = []
for field in arg:
_convert(field, field_args)
cargs.append(_vm.Tuple(*field_args))
cargs.append(_vm._Tuple(*field_args))
else:
raise "unsupported type"

Expand Down
22 changes: 11 additions & 11 deletions tests/python/relay/test_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,14 @@ def test_rnn():

if __name__ == "__main__":
test_id()
# test_op()
# test_cond()
# test_simple_if()
# test_simple_call()
# test_count_loop()
# test_sum_loop()
# test_tuple_fst()
# test_tuple_second()
# test_let_scalar()
# test_let_tensor()
# test_rnn()
test_op()
test_cond()
test_simple_if()
test_simple_call()
test_count_loop()
test_sum_loop()
test_tuple_fst()
test_tuple_second()
test_let_scalar()
test_let_tensor()
test_rnn()

0 comments on commit 7ae24fb

Please sign in to comment.