Skip to content

Commit

Permalink
typo fix (apache#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoreau89 committed Mar 22, 2019
1 parent c091562 commit 8745f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vta/python/vta/top/vta_conv2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def _traverse(op):
pad_data = None
wrkld = _get_workload(data, pad_data, kernel, output)
if planStr:
matchObj = re.match( r'b(\d+)_oc(\d+)_ic(\d+)_h(\d+)_w(\d+)_oct(\d+)_ht(\d+)', sched_str)
matchObj = re.match( r'b(\d+)_oc(\d+)_ic(\d+)_h(\d+)_w(\d+)_oct(\d+)_ht(\d+)', planStr)
b_factor = int(matchObj.group(1))
oc_factor = int(matchObj.group(2))
ic_factor = int(matchObj.group(3))
Expand Down

0 comments on commit 8745f62

Please sign in to comment.