pytorch/torch/csrc/jit
2025-09-08 19:10:36 +00:00
..
api [BE][10/16] fix typos in torch/ (torch/csrc/jit/) (#156320) 2025-07-02 22:55:29 +00:00
backends [BE][10/16] fix typos in torch/ (torch/csrc/jit/) (#156320) 2025-07-02 22:55:29 +00:00
codegen [ROCm] Fix resource_strings.h (#159996) 2025-08-12 01:58:02 +00:00
cuda
docs [BE][10/16] fix typos in torch/ (torch/csrc/jit/) (#156320) 2025-07-02 22:55:29 +00:00
frontend Revert "Remove guard_size_oblivious from default contiguity python check, and add aten.sym_is_contiguous. (#159197)" 2025-08-18 07:22:13 +00:00
ir [BE][10/16] fix typos in torch/ (torch/csrc/jit/) (#156320) 2025-07-02 22:55:29 +00:00
mobile Detach tensor before clone in SGD optimiser and other code (#159204) 2025-07-27 03:31:12 +00:00
operator_upgraders [BE][10/16] fix typos in torch/ (torch/csrc/jit/) (#156320) 2025-07-02 22:55:29 +00:00
passes [ONNX] Remove private members from torch.onnx (#161546) 2025-09-02 16:31:23 +00:00
python Always build USE_DISTRIBUTED. (#160449) 2025-09-08 19:10:36 +00:00
runtime Always build USE_DISTRIBUTED. (#160449) 2025-09-08 19:10:36 +00:00
serialization Always build USE_DISTRIBUTED. (#160449) 2025-09-08 19:10:36 +00:00
tensorexpr Revert "Fix usage of forwarding references (#161094)" 2025-09-04 20:35:41 +00:00
testing
jit_log.cpp
jit_log.h [JIT] add GRAPH_DEBUG for setGraphExecutorOptimize (#153549) 2025-05-14 20:07:25 +00:00
jit_opt_limit.cpp
jit_opt_limit.h
JIT-AUTOCAST.md
OVERVIEW.md [BE][8/16] fix typos in torch/ (torch/csrc/jit/) (#156318) 2025-07-02 22:55:29 +00:00
README.md [BE][8/16] fix typos in torch/ (torch/csrc/jit/) (#156318) 2025-07-02 22:55:29 +00:00
resource_guard.h

PyTorch JIT

This folder contains (most of) the C++ code for the PyTorch JIT, a language and compiler stack for executing PyTorch models portably and efficiently. To learn more about the JIT from a user perspective, please consult our reference documentation and tutorials.

A brief summary of the source tree:

  • OVERVIEW.md: High-level technical overview of the JIT.
  • frontend/: Taking PyTorch modules in Python and translating them into the JIT IR.
  • ir/: Core IR abstractions.
  • runtime/: Interpreter, graph execution, and JIT operators.
  • codegen/: Generating efficient, hardware-specific code for JIT subgraphs.
  • serialization/: Saving and loading modules.
  • api/: Any user-facing C++ or Python interfaces.
  • python/: Binding stuff into Python or accessing information from the Python environment.
  • testing/: Utilities and helpers for testing.
  • mobile/: Mobile-specific implementations of runtime components.
  • passes/: IR-to-IR passes, generally for optimization and lowering.
  • generated/: This folder is generated by the PyTorch build, and contains bindings for native PyTorch operators into the JIT.

Refer to each folder for more in-depth documentation.

Other relevant parts of the codebase not contained here:

  • aten/src/ATen/core: contains JIT code reused by other elements of the runtime system (eager, mobile, etc.)