Skip to content

Commit 3b76cd4

Browse files
lezcanofacebook-github-bot
authored andcommitted
Fix torch.compile links (#121824)
Summary: Fixes pytorch/pytorch.github.io#1567 X-link: pytorch/pytorch#121824 Approved by: https://github.com/svekars, https://github.com/peterbell10, https://github.com/malfet ghstack dependencies: #121823 Reviewed By: DanilBaibak Differential Revision: D54969807 fbshipit-source-id: 2cc2db3f759a9f1070aa41e3ff0bb6e1286d74d3
1 parent ce0278c commit 3b76cd4

File tree

1 file changed

+4
-2
lines changed
  • userbenchmark/dynamo/dynamobench/_dynamo

1 file changed

+4
-2
lines changed

userbenchmark/dynamo/dynamobench/_dynamo/utils.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,10 @@
102102

103103
counters: DefaultDict[str, Counter[str]] = collections.defaultdict(collections.Counter)
104104
optimus_scuba_log: Dict[str, Any] = {}
105-
troubleshooting_url = "https://pytorch.org/docs/main/compile/troubleshooting.html"
106-
nnmodule_doc_url = "https://pytorch.org/docs/main/compile/nn-module.html"
105+
troubleshooting_url = (
106+
"https://pytorch.org/docs/main/torch.compiler_troubleshooting.html"
107+
)
108+
nnmodule_doc_url = "https://pytorch.org/docs/main/torch.compiler_nn_module.html"
107109
nnmodule_doc_url_msg = f"See {nnmodule_doc_url} for more information and limitations."
108110
log = logging.getLogger(__name__)
109111

0 commit comments

Comments
 (0)