ONNX IR¶

ONNX IR is an in-memory IR that supports the full ONNX spec for graph construction, analysis, and transformation.

This docsite is organized for fast onboarding, production usage, and complete API references.

Why ONNX IR¶

  • Full ONNX model coverage, including a subset of structurally invalid models that still need repair workflows.

  • Efficient tensor handling, including external data and zero-copy friendly pathways.

  • Robust graph mutation semantics suitable for compiler and transformation passes.

  • Pythonic APIs that preserve intuitive mapping to ONNX concepts.

Start here¶

User Guides