Metadata-Version: 2.1
Name: torchdynamo
Version: 0.1.3
Summary: A Python-level JIT compiler designed to make unmodified PyTorch programs faster.
Home-page: https://github.com/facebookresearch/torchdynamo
Author: Jason Ansel
Author-email: jansel@fb.com
License: BSD-3
Keywords: pytorch machine learning compilers
Platform: UNKNOWN
Requires-Python: >=3.7, <3.9
Description-Content-Type: text/markdown
License-File: LICENSE


TorchDynamo is a Python-level JIT compiler designed to make unmodified
PyTorch programs faster. TorchDynamo hooks into the frame evaluation API
in CPython (PEP 523) to dynamically modify Python bytecode right before
it is executed. It rewrites Python bytecode in order to extract sequences
of PyTorch operations into an FX Graph which is then just-in-time
compiled with an ensemble of different backends and autotuning.


