xref: /aosp_15_r20/external/pytorch/torch/fx/config.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 # Whether to disable showing progress on compilation passes
2 # Need to add a new config otherwise wil get a circular import if dynamo config is imported here
3 disable_progress = True
4 
5 # If True this also shows the node names in each pass, for small models this is great but larger models it's quite noisy
6 verbose_progress = False
7