Skip to content

Commit

Permalink
[TVMC] run: Fix call to non-existing method (apache#9608)
Browse files Browse the repository at this point in the history
  • Loading branch information
gromero authored and ylc committed Jan 13, 2022
1 parent 09175d4 commit e86ba83
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/tvm/driver/tvmc/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,7 @@ def drive_run(args):
if args.device == "micro":
path = path / "model.tar"
if not path.is_file():
TVMCException(
f"Could not find model (model.tar) in the specified project dir {path.dirname()}."
)
TVMCException(f"Could not find model '{path}'!")

# Check for options unavailable for micro targets.

Expand Down

0 comments on commit e86ba83

Please sign in to comment.