From f1fe94481e6357323ea4e8f42ce2b8235940a8df Mon Sep 17 00:00:00 2001 From: awaelchli Date: Thu, 1 Feb 2024 16:19:33 +0100 Subject: [PATCH] fix --- docs/source-fabric/advanced/compile.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-fabric/advanced/compile.rst b/docs/source-fabric/advanced/compile.rst index 3e47991675b54..000e9086994e0 100644 --- a/docs/source-fabric/advanced/compile.rst +++ b/docs/source-fabric/advanced/compile.rst @@ -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 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 `_ 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 `_ to fully optimize your model. ----