mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
There are 3 progress bars each gated behind their own config, all off by default for now 1. Dynamo: Macro level config for dynamo, AOT, inductor 2. FX: Progress bar for each pass, with their names 3. Inductor Pull Request resolved: https://github.com/pytorch/pytorch/pull/88384 Approved by: https://github.com/wconstab, https://github.com/mlazos, https://github.com/malfet
7 lines
328 B
Python
7 lines
328 B
Python
# Whether to disable showing progress on compilation passes
|
|
# Need to add a new config otherwise wil get a circular import if dynamo config is imported here
|
|
disable_progress = True
|
|
|
|
# If True this also shows the node names in each pass, for small models this is great but larger models it's quite noisy
|
|
verbose_progress = False
|