-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Add a new tutorial for compile time caching #3277
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,76 @@ | ||||||||||
Compile Time Caching Configurations | ||||||||||
========================================================= | ||||||||||
**Authors:** `Oguz Ulgen <https://github.com/oulgen>`_ and `Sam Larsen <https://github.com/masnesral>`_ | ||||||||||
|
||||||||||
Introduction | ||||||||||
------------------ | ||||||||||
|
||||||||||
PyTorch Compiler implements several caches to reduce compilation latency. | ||||||||||
This recipe demonstrates how you can configure various parts of the caching in ``torch.compile``. | ||||||||||
|
||||||||||
Prerequisites | ||||||||||
------------------- | ||||||||||
|
||||||||||
Before starting this recipe, make sure that you have the following: | ||||||||||
|
||||||||||
* Basic understanding of ``torch.compile``. See: | ||||||||||
|
||||||||||
* `torch.compiler API documentation <https://pytorch.org/docs/stable/torch.compiler.html#torch-compiler>`__ | ||||||||||
* `Introduction to torch.compile <https://pytorch.org/tutorials/intermediate/torch_compile_tutorial.html>`__ | ||||||||||
* `Compile Time Caching in torch.compile <https://pytorch.org/tutorials/recipes/torch_compile_caching_tutorial.html>`__ | ||||||||||
|
||||||||||
* PyTorch 2.4 or later | ||||||||||
|
||||||||||
Inductor Cache Settings | ||||||||||
---------------------------- | ||||||||||
|
||||||||||
Most of these caches are in-memory, only used within the same process, and are transparent to the user. An exception is caches that store compiled FX graphs (FXGraphCache, AOTAutogradCache). These caches allow Inductor to avoid recompilation across process boundaries when it encounters the same graph with the same Tensor input shapes (and the same configuration). The default implementation stores compiled artifacts in the system temp directory. An optional feature also supports sharing those artifacts within a cluster by storing them in a Redis database. | ||||||||||
|
Most of these caches are in-memory, only used within the same process, and are transparent to the user. An exception is caches that store compiled FX graphs (FXGraphCache, AOTAutogradCache). These caches allow Inductor to avoid recompilation across process boundaries when it encounters the same graph with the same Tensor input shapes (and the same configuration). The default implementation stores compiled artifacts in the system temp directory. An optional feature also supports sharing those artifacts within a cluster by storing them in a Redis database. | |
Most of these caches are in-memory, only used within the same process, and are transparent to the user. An exception is caches that store compiled FX graphs (``FXGraphCache``, ``AOTAutogradCache``). These caches allow Inductor to avoid recompilation across process boundaries when it encounters the same graph with the same Tensor input shapes (and the same configuration). The default implementation stores compiled artifacts in the system temp directory. An optional feature also supports sharing those artifacts within a cluster by storing them in a Redis database. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The settings are accessible via environment variables listed below or can be hard-coded in Inductor’s config file. | |
The settings are accessible via environment variables listed below or can be hard-coded in the Inductor’s config file. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This setting enables the local FX graph cache feature, i.e., by storing artifacts in the host’s temp directory. ``1`` enables, and any other value disables it. By default, the disk location is per username, but users can enable sharing across usernames by specifying ``TORCHINDUCTOR_CACHE_DIR`` (below). | |
This setting enables the local FX graph cache feature, which stores artifacts in the host's temporary directory. Setting it to ``1`` enables, enables the feature, while any other value disables it. By default, the disk location is per username, but users can enable sharing across usernames by specifying ``TORCHINDUCTOR_CACHE_DIR`` (below). |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This setting extends FXGraphCache to store cached results at the AOTAutograd level, instead of at the Inductor level. ``1`` enables, and any other value disables it. | |
This setting extends ``FXGraphCache`` to store cached results at the ``AOTAutograd`` level, rather than at the Inductor level. Setting it to ``1`` enables this feature, while any other value disables it. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that if Inductor locates a remote cache entry, it stores the compiled artifact in the local on-disk cache; that local artifact would be served on subsequent runs on the same machine. | |
.. note:: | |
If Inductor locates a remote cache entry, it stores the compiled artifact in the local on-disk cache. That local artifact would be served on subsequent runs on the same machine. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
``TORCHINDUCTOR_REDIS_HOST`` (defaults to ``localhost``) | |
* ``TORCHINDUCTOR_REDIS_HOST`` (defaults to ``localhost``) |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
``TORCHINDUCTOR_REDIS_PORT`` (defaults to ``6379``) | |
* ``TORCHINDUCTOR_REDIS_PORT`` (defaults to ``6379``) |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,12 +1,16 @@ | ||||||
Compile Time Caching in ``torch.compile`` | ||||||
========================================================= | ||||||
**Authors:** `Oguz Ulgen <https://github.com/oulgen>`_ and `Sam Larsen <https://github.com/masnesral>`_ | ||||||
**Author:** `Oguz Ulgen <https://github.com/oulgen>`_ | ||||||
|
||||||
Introduction | ||||||
------------------ | ||||||
|
||||||
PyTorch Inductor implements several caches to reduce compilation latency. | ||||||
This recipe demonstrates how you can configure various parts of the caching in ``torch.compile``. | ||||||
PyTorch Compiler provides several caching offerings to reduce compilation latency. | ||||||
oulgen marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
This recipe will explain these offerings in detail to help users pick the best option for their use case. | ||||||
|
||||||
Check out `Compile Time Caching Configurations <https://pytorch.org/tutorials/recipes/torch_compile_caching_configuration_tutorial.html>` for how to configure these caches. | ||||||
|
||||||
Also check out our caching benchmark at `PT CacheBench Benchmarks <https://hud.pytorch.org/benchmark/llms?repoName=pytorch%2Fpytorch&benchmarkName=TorchCache+Benchmark>`. | ||||||
|
||||||
Prerequisites | ||||||
------------------- | ||||||
|
@@ -17,60 +21,83 @@ Before starting this recipe, make sure that you have the following: | |||||
|
||||||
* `torch.compiler API documentation <https://pytorch.org/docs/stable/torch.compiler.html#torch-compiler>`__ | ||||||
* `Introduction to torch.compile <https://pytorch.org/tutorials/intermediate/torch_compile_tutorial.html>`__ | ||||||
* `Triton language documentation <https://triton-lang.org/main/index.html>`__ | ||||||
|
||||||
* PyTorch 2.4 or later | ||||||
|
||||||
Inductor Cache Settings | ||||||
---------------------------- | ||||||
Caching Offerings | ||||||
--------------------- | ||||||
|
||||||
``torch.compile`` provides the following caching offerings: | ||||||
|
||||||
* End to end caching (also known as Mega-Cache) | ||||||
* Modular caching of TorchDynamo, TorchInductor, and Triton | ||||||
|
||||||
It is important to note that caching validates that the cache artifacts are used with the same PyTorch and Triton version, as well as, same GPU when device is set to be cuda. | ||||||
|
||||||
``torch.compile`` end-to-end caching (a.k.a. Mega-Cache) | ||||||
------------------------------------------------------------ | ||||||
|
||||||
End to end caching, from here onwards referred to Mega-Cache, is the ideal solution for users looking for a portable caching solution that can be stored in a database and can later be fetched possibly on a separate machine. | ||||||
|
||||||
Mega-Cache provides two compiler APIs | ||||||
|
||||||
* ``torch.compiler.save_cache_artifacts()`` | ||||||
* ``torch.compiler.load_cache_artifacts()`` | ||||||
|
||||||
The intented use case is after compiling and executing a model, the user calls ``torch.compiler.save_cache_artifacts()`` which will return the compiler artifacts in a portable form. Later, potentially on a different machine, the user may call ``torch.compiler.load_cache_artifacts()`` with these artifacts to prepopulate the ``torch.compile`` caches in order to jump-start their cache. | ||||||
|
The intented use case is after compiling and executing a model, the user calls ``torch.compiler.save_cache_artifacts()`` which will return the compiler artifacts in a portable form. Later, potentially on a different machine, the user may call ``torch.compiler.load_cache_artifacts()`` with these artifacts to prepopulate the ``torch.compile`` caches in order to jump-start their cache. | |
The intended use case is after compiling and executing a model, the user calls ``torch.compiler.save_cache_artifacts()`` which will return the compiler artifacts in a portable form. Later, potentially on a different machine, the user may call ``torch.compiler.load_cache_artifacts()`` with these artifacts to prepopulate the ``torch.compile`` caches in order to jump-start their cache. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An example to this is as follows. First, compile and save the cache artifacts. | |
Consider the following example. First, compile and save the cache artifacts: |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Later, the user can jump-start their cache by the following. | |
Later, you can jump-start the cache by the following: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.