Fix dead link in docs (#19387)

This commit is contained in:
awaelchli 2024-02-06 11:54:17 +01:00 committed by GitHub
parent 285da64386
commit 130b05fe0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ You can check whether your model produces graph breaks by calling ``torch.compil
# Force an error if there is a graph break in the model # Force an error if there is a graph break in the model
model = torch.compile(model, fullgraph=True) model = torch.compile(model, fullgraph=True)
Be aware that the error messages produced here are often quite cryptic, so you will likely have to do some `troubleshooting <pytorch.org/docs/stable/torch.compiler_troubleshooting.html>`_ to fully optimize your model. Be aware that the error messages produced here are often quite cryptic, so you will likely have to do some `troubleshooting <https://pytorch.org/docs/stable/torch.compiler_troubleshooting.html>`_ to fully optimize your model.
---- ----