Skip to content

Commit 724189e

Browse files
authored
Merge branch 'main' into remove-files-gh-pages
2 parents 8ebb6f0 + 8a5c6f1 commit 724189e

File tree

3 files changed

+3
-25
lines changed

3 files changed

+3
-25
lines changed

index.rst

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -612,20 +612,6 @@ Welcome to PyTorch Tutorials
612612
:link: advanced/static_quantization_tutorial.html
613613
:tags: Quantization
614614

615-
.. customcarditem::
616-
:header: Grokking PyTorch Intel CPU Performance from First Principles
617-
:card_description: A case study on the TorchServe inference framework optimized with Intel® Extension for PyTorch.
618-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
619-
:link: intermediate/torchserve_with_ipex
620-
:tags: Model-Optimization,Production
621-
622-
.. customcarditem::
623-
:header: Grokking PyTorch Intel CPU Performance from First Principles (Part 2)
624-
:card_description: A case study on the TorchServe inference framework optimized with Intel® Extension for PyTorch (Part 2).
625-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
626-
:link: intermediate/torchserve_with_ipex_2
627-
:tags: Model-Optimization,Production
628-
629615
.. customcarditem::
630616
:header: Multi-Objective Neural Architecture Search with Ax
631617
:card_description: Learn how to use Ax to search over architectures find optimal tradeoffs between accuracy and latency.
@@ -1071,8 +1057,6 @@ Additional Resources
10711057
intermediate/dynamic_quantization_bert_tutorial
10721058
intermediate/quantized_transfer_learning_tutorial
10731059
advanced/static_quantization_tutorial
1074-
intermediate/torchserve_with_ipex
1075-
intermediate/torchserve_with_ipex_2
10761060
intermediate/nvfuser_intro_tutorial
10771061
intermediate/ax_multiobjective_nas_tutorial
10781062
intermediate/torch_compile_tutorial

recipes_source/recipes_index.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -450,15 +450,6 @@ Recipes are bite-sized, actionable examples of how to use specific PyTorch featu
450450
:link: ../recipes/distributed_comm_debug_mode.html
451451
:tags: Distributed-Training
452452

453-
.. TorchServe
454-
455-
.. customcarditem::
456-
:header: Deploying a PyTorch Stable Diffusion model as a Vertex AI Endpoint
457-
:card_description: Learn how to deploy model in Vertex AI with TorchServe
458-
:image: ../_static/img/thumbnails/cropped/generic-pytorch-logo.png
459-
:link: ../recipes/torchserve_vertexai_tutorial.html
460-
:tags: Production
461-
462453
.. End of tutorial card section
463454
464455
.. raw:: html

recipes_source/torch_compile_caching_tutorial.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ The aforementioned ``Mega-Cache`` is composed of individual components that can
8888
* ``InductorCache``: A bundle of ``FXGraphCache`` and ``Triton`` cache.
8989
* ``AOTAutogradCache``: A cache of joint graph artifacts.
9090
* ``PGO-cache``: A cache of dynamic shape decisions to reduce number of recompilations.
91+
* `AutotuningCache <https://github.com/pytorch/pytorch/blob/795a6a0affd349adfb4e3df298b604b74f27b44e/torch/_inductor/runtime/autotune_cache.py#L116>`__:
92+
* ``Inductor`` generates ``Triton`` kernels and benchmarks them to select the fastest kernels.
93+
* ``torch.compile``'s built-in ``AutotuningCache`` caches these results.
9194

9295
All these cache artifacts are written to ``TORCHINDUCTOR_CACHE_DIR`` which by default will look like ``/tmp/torchinductor_myusername``.
9396

0 commit comments

Comments
 (0)