onnx-shape-inference
Experimental symbolic shape inference for ONNX models. Built on top of ONNX IR, this library performs shape inference directly on the IR without serialization overhead, using SymPy for symbolic dimension arithmetic.
Features
- Symbolic shape inference — propagates shapes through the graph using SymPy expressions for symbolic dimensions
- Shape data propagation — tracks known element values of shape tensors (e.g. through
Shape → Slice → Concat → Reshapechains) to resolve concrete output shapes that standard shape inference cannot - Broad operator coverage — built-in inference for standard ONNX (
ai.onnx) operators pluscom.microsoftcontrib ops, with version-aware dispatch across opset history - Symbolic constraint resolution — reconciles engine-generated dimension names with the symbolic names an author declares on graph outputs /
value_info, renaming anonymous dims (including compound expressions like2*_d0orpast_seq + seq) to the declared names - Extensible registry — register custom shape inference functions for custom operators
- Merge policies — control how newly inferred shapes are merged with existing ones:
refine(default),strict,override, andskip
Installation
pip install onnx-shape-inference
Or install from source (main branch):
pip install git+https://github.com/justinchuby/onnx-shape-inference.git
Command line
Run shape inference on a model and see how many new shapes were inferred:
onnx-shape-inference model.onnx
Save the inferred model to a file:
onnx-shape-inference model.onnx -o model_inferred.onnx
Overwrite the input model in place:
onnx-shape-inference model.onnx --in-place
Select a different merge policy:
onnx-shape-inference model.onnx --policy strict
Usage
import onnx_ir as ir
from onnx_shape_inference import infer_symbolic_shapes
# Load a model
model = ir.load("model.onnx")
# Run shape inference
model = infer_symbolic_shapes(model)
# Or with a strict merge policy
model = infer_symbolic_shapes(model, policy="strict")
Use with onnxscript optimizer
You can run symbolic shape inference on the model to help the optimizer discover more optimization opportunities.
import onnx_shape_inference
import onnx_ir as ir
import onnxscript.optimizer
model = ir.load("model.onnx")
# Provide more shape information with infer_symbolic_shapes
model = onnx_shape_inference.infer_symbolic_shapes(model)
# onnxscript optimizer can leverage this information to better optimize the model
onnxscript.optimizer.optimize(model)
ir.save(model, "model_optimized.onnx")
Per-node inference
You can run shape inference on individual nodes by using the
ShapeInferenceContext and registry directly. This is useful for
debugging, testing, or integrating into custom graph passes.
import onnx_ir as ir
from onnx_shape_inference import ShapeInferenceContext, registry
# Populate the registry with all built-in ops
registry.collect()
# Create a context with the model's opset imports
ctx = ShapeInferenceContext(opset_imports={"": 21})
# Look up the inference function for the op
infer_func = registry.get("", "Relu", version=21)
# Build a node (or get one from an existing graph)
x = ir.Value(name="x", shape=ir.Shape([2, 3]), type=ir.TensorType(ir.DataType.FLOAT))
y = ir.Value(name="y")
node = ir.Node("", "Relu", inputs=[x], outputs=[y])
# Run inference
infer_func(ctx, node)
print(y.shape) # [2,3]
print(y.dtype) # FLOAT
Registering custom operators
from onnx_shape_inference import registry
@registry.register("com.custom", "MyOp", since_version=1)
def infer_my_op(ctx, node):
input_shape = node.inputs[0].shape
output_shape = ir.Shape([...])
ctx.set_shape(node.outputs[0], output_shape)
Shape data propagation (pkg.onnx_shape_inference.sym_data)
Shape inference alone cannot resolve output shapes when ops like Reshape consume
non-constant shape tensors that were computed at runtime (e.g. Shape → Slice → Concat → Reshape).
The sym_data feature bridges this gap by tracking the known element values of
1-D integer tensors as they flow through the graph.
After inference, each value that carries propagated data has a
pkg.onnx_shape_inference.sym_data entry in its metadata_props. You can read
it directly or use the SYM_DATA_KEY constant:
import json
import numpy as np
import onnx_ir as ir
from onnx_shape_inference import SYM_DATA_KEY, infer_symbolic_shapes
model = infer_symbolic_shapes(model)
for node in model.graph:
for value in node.inputs:
if SYM_DATA_KEY in value.metadata_props:
text = value.metadata_props[SYM_DATA_KEY] # e.g. '["N",3,768]'
elements = json.loads(text) # ["N", 3, 768]
# You can create an ir.Shape from it
shape = ir.Shape(elements)
# Then you can replace this input with a constant value
When all elements are concrete integers the value is also stored as a constant
tensor, so downstream consumers that read constants directly can access it
without parsing metadata_props.
Adopting declared symbolic names (constraint resolution)
Per-operator inference names data-dependent dimensions with anonymous symbols
(_d0, _d1, …). Model authors, however, usually declare meaningful symbolic
names on graph outputs and value_info (e.g. Y: [batch, seq]). After the main
inference pass, a constraint-resolution pass records equalities between inferred
and declared shapes and renames the anonymous symbols to the author's
declared names — including compound occurrences such as 2*_d0 → 2*batch and
past_seq + seq → total_seq. Only anonymous _dN symbols are renamed; declared
names are treated as authoritative.
This is enabled by default. Pass adopt_declared_symbols=False to keep the raw
engine-generated symbols instead:
model = infer_symbolic_shapes(model, adopt_declared_symbols=False)
Development
pip install -r requirements/ci/requirements.txt
pip install -e .
pytest
Lint and format with lintrunner:
pip install -r requirements/lintrunner/requirements.txt
lintrunner -a
Fuzzing
A deterministic, seeded fuzzer stress-tests shape inference against ONNX reference inference and ONNX Runtime. A fast tier runs as part of the normal test suite; replay a failing seed with:
FUZZ_SEED=<seed> python3 -m pytest tests/shape_inference_fuzz_test.py
See docs/fuzzing.md for how to turn a fuzzer finding into a regression test, and docs/fuzzing-design.md for the fuzzer's design (generator, oracles, harness, and shrinking).
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file onnx_shape_inference-0.3.2.tar.gz.
File metadata
- Download URL: onnx_shape_inference-0.3.2.tar.gz
- Upload date:
- Size: 611.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0deffa9639986c9326435edf4920c59c2fde97a9a6a200c20ff3b08a7adf21ca
|
|
| MD5 |
d8389da5623a374f16d6bf76a70af6a2
|
|
| BLAKE2b-256 |
cb49d2785d775f2e233bc4e78a84424e999e08a7e15274dac7681dc61a849f88
|
Provenance
The following attestation bundles were made for onnx_shape_inference-0.3.2.tar.gz:
Publisher:
main.yml on justinchuby/onnx-shape-inference
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onnx_shape_inference-0.3.2.tar.gz -
Subject digest:
0deffa9639986c9326435edf4920c59c2fde97a9a6a200c20ff3b08a7adf21ca - Sigstore transparency entry: 2568818020
- Sigstore integration time:
-
Permalink:
justinchuby/onnx-shape-inference@24f44ba99066fd2f8d0084a5a3a2d00e047a4312 -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/justinchuby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@24f44ba99066fd2f8d0084a5a3a2d00e047a4312 -
Trigger Event:
push
-
Statement type:
File details
Details for the file onnx_shape_inference-0.3.2-py3-none-any.whl.
File metadata
- Download URL: onnx_shape_inference-0.3.2-py3-none-any.whl
- Upload date:
- Size: 248.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0500a46d3ff45c0380feff5bf5b5a5dbb667720dfc06fbc63aa02d67530d51c8
|
|
| MD5 |
b8007f4d89aa743257393b08ca24f1f3
|
|
| BLAKE2b-256 |
988a41f459c946b1880d6b7df72705abcf56366a15c1449aec11f0dc97255768
|
Provenance
The following attestation bundles were made for onnx_shape_inference-0.3.2-py3-none-any.whl:
Publisher:
main.yml on justinchuby/onnx-shape-inference
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
onnx_shape_inference-0.3.2-py3-none-any.whl -
Subject digest:
0500a46d3ff45c0380feff5bf5b5a5dbb667720dfc06fbc63aa02d67530d51c8 - Sigstore transparency entry: 2568818037
- Sigstore integration time:
-
Permalink:
justinchuby/onnx-shape-inference@24f44ba99066fd2f8d0084a5a3a2d00e047a4312 -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/justinchuby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@24f44ba99066fd2f8d0084a5a3a2d00e047a4312 -
Trigger Event:
push
-
Statement type: