Skip to content

Commit

Permalink
Fix tvmc run error message when inputs aren't found. (apache#10017)
Browse files Browse the repository at this point in the history
  • Loading branch information
areusch authored Feb 26, 2022
1 parent 4a9db23 commit 01f306f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/driver/tvmc/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def make_inputs_dict(
if input_name not in shape_dict.keys():
raise TVMCException(
"the input tensor '{}' is not in the graph. Expected inputs: '{}'".format(
input_name, shape_dict.keys()
input_name, list(shape_dict.keys())
)
)

Expand Down

0 comments on commit 01f306f

Please sign in to comment.