Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengJiang committed Aug 8, 2018
1 parent 3abfedf commit 35bdd6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/tvm/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ def _get_region(tslice):
if len(out_dims) != len(arg_names):
raise ValueError("finputs do not match dimension, ndim=%d" % out_dims)

out_var = [_IterVar((0, int(extent)), arg_name, 0) for arg_name, extent in zip(arg_names, out_dims)]
out_var = [_IterVar((0, int(extent)), arg_name, 0)
for arg_name, extent in zip(arg_names, out_dims)]
if isinstance(raxis, _schedule.IterVar):
raxis = [raxis]
if raxis is None:
Expand Down

0 comments on commit 35bdd6e

Please sign in to comment.