Fix markdown link syntax in graph breaks index (#162400)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/162400
Approved by: https://github.com/Skylion007
This commit is contained in:
William Wen
2025-09-12 19:29:47 +00:00
committed by PyTorch MergeBot
parent 53b8bdb977
commit 38afeb2ba2

View File

@ -1,6 +1,6 @@
# Working with Graph Breaks
As you might remember from (Dynamo Core Concepts)[programming_model.dynamo_core_concepts] that Dynamo performs a graph break when
As you might remember from [Dynamo Core Concepts](programming_model.dynamo_core_concepts) that Dynamo performs a graph break when
it encounters code that can't be traced. In the default `torch.compile` settings, Dynamo compiles the FX graph
that has been determined up to that point, executes the unsupported code in regular Python, and then resumes tracing.