From a6a2cd6257393031c683977fcb61d07c36f4b898 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Thu, 18 Jul 2024 10:06:23 -0400 Subject: [PATCH] Typo fix (#131037) Signed-off-by: Edward Z. Yang Pull Request resolved: https://github.com/pytorch/pytorch/pull/131037 Approved by: https://github.com/albanD, https://github.com/Skylion007 --- torch/_dynamo/symbolic_convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch/_dynamo/symbolic_convert.py b/torch/_dynamo/symbolic_convert.py index d582b10161f..6d07743d331 100644 --- a/torch/_dynamo/symbolic_convert.py +++ b/torch/_dynamo/symbolic_convert.py @@ -184,7 +184,7 @@ class SpeculationLog: and entry.lineno == lineno ), textwrap.dedent( f""" - SpecuationLog diverged at {self.index} of {len(self.entries)}: + SpeculationLog diverged at {self.index} of {len(self.entries)}: - Run1: {entry.filename}:{entry.lineno} (ip={entry.instruction_pointer}) - Run2: {filename}:{lineno} (ip={instruction_pointer}) Please submit a bug report.