Skip to content

Commit

Permalink
Fix python lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wweic committed Jun 7, 2019
1 parent 59ae278 commit 4c2e540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/relay/backend/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _eval_vm(mod, ctx, *args):

assert isinstance(main_func, Function)
# optimize all functions in the module
for gvar,func in mod.functions.items():
for gvar, func in mod.functions.items():
func_opt = optimize(mod[gvar], mod)
mod[gvar] = func_opt
main_func = optimize(mod[mod.entry_func], mod)
Expand Down

0 comments on commit 4c2e540

Please sign in to comment.