Skip to content

fix(docs): wrong conversion from rst to md in torch.compiler_troubleshooting.md #160238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(docs): wrong conversion from rst to md in torch.compiler_troubles…
…hooting.md
  • Loading branch information
yzs981130 authored Aug 9, 2025
commit e4bafea51834c7ddcd4d3a1e1bdac6e7a62f46da
2 changes: 1 addition & 1 deletion docs/source/torch.compiler_troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ or changing some `torch.compile` settings.

We recommend applying `torch.compile` to the highest-level function that doesn't cause excessive problems.
Typically, it is your train or eval step with the optimizer but without the loop, your top-level `nn.Module`,
or some sub-``` nn.Module``s. ``torch.compile ``` specifically doesn't handle distributed wrapper modules like
or some sub- `nn.Module` s. `torch.compile` specifically doesn't handle distributed wrapper modules like
DDP or FSDP very well, so consider applying `torch.compile` to the inner module passed to the wrapper.

```py
Expand Down