Skip to content

Commit

Permalink
fix generate_default_trace.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Yundi Qian committed Feb 4, 2022
1 parent bae9462 commit 0194fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler_opt/tools/generate_default_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def worker(runner, work_queue: queue.Queue, results_queue: queue.Queue):
except queue.Empty:
return
try:
record = runner.collect_data(module_triple, '', None)
record = runner.collect_data(module_triple, '', None, None)
results_queue.put((module_triple, record))
except: # pylint: disable=bare-except
logging.error('Failed to compile %s.', module_triple)
Expand Down

0 comments on commit 0194fa4

Please sign in to comment.