Skip to content
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

Add Compiler category in left nav #3184

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
23 changes: 16 additions & 7 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ Welcome to PyTorch Tutorials
:card_description: Learn how to use compiled autograd to capture a larger backward graph.
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
:link: intermediate/compiled_autograd_tutorial
:tags: Model-Optimization,CUDA
:tags: Model-Optimization,CUDA,Compiler

.. customcarditem::
:header: Custom C++ and CUDA Operators
Expand Down Expand Up @@ -585,7 +585,7 @@ Welcome to PyTorch Tutorials
:card_description: Train BERT, prune it to be 2:4 sparse, and then accelerate it to achieve 2x inference speedups with semi-structured sparsity and torch.compile.
:image: _static/img/thumbnails/cropped/Pruning-Tutorial.png
:link: advanced/semi_structured_sparse.html
:tags: Text,Model-Optimization
:tags: Text,Model-Optimization,Compiler

.. customcarditem::
:header: (beta) Dynamic Quantization on an LSTM Word Language Model
Expand Down Expand Up @@ -637,18 +637,18 @@ Welcome to PyTorch Tutorials
:tags: Model-Optimization,Best-Practice,Ax,TorchX

.. customcarditem::
:header: torch.compile Tutorial
:header: Introduction to torch.compile
:card_description: Speed up your models with minimal code changes using torch.compile, the latest PyTorch compiler solution.
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
:link: intermediate/torch_compile_tutorial.html
:tags: Model-Optimization
:tags: Model-Optimization,Compiler

.. customcarditem::
:header: Inductor CPU Backend Debugging and Profiling
:card_description: Learn the usage, debugging and performance profiling for ``torch.compile`` with Inductor CPU backend.
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
:link: intermediate/inductor_debug_cpu.html
:tags: Model-Optimization
:tags: Model-Optimization,Compiler

.. customcarditem::
:header: (beta) Implementing High-Performance Transformers with SCALED DOT PRODUCT ATTENTION
Expand Down Expand Up @@ -957,6 +957,17 @@ Additional Resources
beginner/vt_tutorial
intermediate/tiatoolbox_tutorial

.. toctree::
:maxdepth: 1
:includehidden:
:hidden:
:caption: Compiler

intermediate/torch_compile_tutorial
intermediate/compiled_autograd_tutorial
intermediate/transformer_building_blocks
intermediate/inductor_debug_cpu

.. toctree::
:maxdepth: 2
:includehidden:
Expand Down Expand Up @@ -1079,8 +1090,6 @@ Additional Resources
intermediate/torchserve_with_ipex_2
intermediate/nvfuser_intro_tutorial
intermediate/ax_multiobjective_nas_tutorial
intermediate/torch_compile_tutorial
intermediate/compiled_autograd_tutorial
intermediate/inductor_debug_cpu
intermediate/scaled_dot_product_attention_tutorial
beginner/knowledge_distillation_tutorial
Expand Down
Loading