Skip to content

Commit

Permalink
[Easy][Dynamo][TVM] remove unnecessary prints (pytorch#142445)
Browse files Browse the repository at this point in the history
This PR intends to remove the unnecessary prints in the auto-scheduler of dynamo's TVM backend.

Pull Request resolved: pytorch#142445
Approved by: https://github.com/jansel
  • Loading branch information
shingjan authored and mori360 committed Dec 11, 2024
1 parent eeecc47 commit ec23816
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions torch/_dynamo/backends/tvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ def tvm(
tasks, task_weights = auto_scheduler.extract_tasks(
mod["main"], params, target
)
for task in tasks:
print(task.compute_dag)
else:
print("No tasks")
if len(tasks) != 0:
tuner = auto_scheduler.TaskScheduler(tasks, task_weights)
if not os.path.exists(log_file):
Expand Down

0 comments on commit ec23816

Please sign in to comment.