We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3176966 commit 0971563Copy full SHA for 0971563
torch/_dynamo/convert_frame.py
@@ -1062,6 +1062,7 @@ def format_guard_failures() -> str:
1062
possibly_missed_reinplacing_opportunities,
1063
remote_cache_time_saved,
1064
structured_logging_overhead_s,
1065
+ config.suppress_errors,
1066
)
1067
record_compilation_metrics(metrics)
1068
torch._dynamo.callback_handler.run_end_callbacks()
torch/_dynamo/utils.py
@@ -804,6 +804,7 @@ class CompilationMetrics:
804
possibly_missed_reinplacing_opportunities: Optional[int]
805
remote_cache_time_saved_s: Optional[float]
806
structured_logging_overhead_s: Optional[float]
807
+ config_suppress_errors: Optional[bool]
808
809
810
@dataclasses.dataclass
0 commit comments