Skip to content

Commit

Permalink
Fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jroesch committed Jul 6, 2021
1 parent 7e68f87 commit fe91baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/auto_scheduler/task_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def pre_tune(self, task_scheduler, task_id):

# overall info
if all(cost < 1e9 for cost in task_scheduler.best_costs):
total_latency_str = "%.3f" % (task_scheduler.cur_score * 1e3)
total_latency_str = "%.3f" % (task_scheduler.cur_score.value * 1e3)
else:
total_latency_str = "-"
print(
Expand Down

0 comments on commit fe91baf

Please sign in to comment.