junrushao1994 commented on a change in pull request #9789:
URL: https://github.com/apache/tvm/pull/9789#discussion_r777055208
##########
File path: python/tvm/auto_scheduler/search_task.py
##########
@@ -543,7 +543,8 @@ def print_best(self, log_file, print_mode="schedule"):
code: str
The best schedule code in python API or CUDA source code
"""
- inp, _ = load_best_record(log_file, self.workload_key)
+ inp, res = load_best_record(log_file, self.workload_key)
+ print("Best codes (ms):", [float(c) * 1000.0 for c in res.costs])
Review comment:
remove this change
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]