pytorch/torch/csrc/jit
lichuyang 8b3dc0d1b0 Better error handling in torch/csrc/jit/runtime/* (#165118)
Refactor error handling by using TORCH_CHECK for improved clarity in constants and scope management in some files in torch/csrc/jit/runtime/*

Fixes some parts of ISSUE https://github.com/pytorch/pytorch/issues/148114

Pull Request resolved: https://github.com/pytorch/pytorch/pull/165118
Approved by: https://github.com/FFFrog, https://github.com/albanD
2025-10-21 15:22:49 +00:00
..
api [2/N] Mark unused parameters in C++ code (#165121) 2025-10-15 03:04:39 +00:00
backends
codegen [2/N] Mark unused parameters in C++ code (#165121) 2025-10-15 03:04:39 +00:00
cuda
docs
frontend Better error handling in torch/csrc/jit/frontend/* (#165213) 2025-10-21 13:54:59 +00:00
ir [2/N] Mark unused parameters in C++ code (#165121) 2025-10-15 03:04:39 +00:00
mobile [2/N] Mark unused parameters in C++ code (#165121) 2025-10-15 03:04:39 +00:00
operator_upgraders
passes [2/N] Mark unused parameters in C++ code (#165121) 2025-10-15 03:04:39 +00:00
python Save Python refcount bump on each arg in maybe_handle_torch_function (#164625) 2025-10-21 02:40:12 +00:00
runtime Better error handling in torch/csrc/jit/runtime/* (#165118) 2025-10-21 15:22:49 +00:00
serialization [PyTorch][aarch64] Cast to signed char to fix aarch64 build (#165021) 2025-10-14 05:37:34 +00:00
tensorexpr [2/N] Mark unused parameters in C++ code (#165121) 2025-10-15 03:04:39 +00:00
testing
jit_log.cpp
jit_log.h
jit_opt_limit.cpp
jit_opt_limit.h
JIT-AUTOCAST.md
OVERVIEW.md
README.md
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.)