TiGrIS
Tiled Graph Inference Scheduler. An ahead-of-time compiler that tiles ML models to fit embedded devices with hard memory budgets.
Give it an ONNX model and a memory budget. It partitions the compute graph into stages, tiles spatial operations, and emits a flat binary plan that the tigris-runtime executes with zero dynamic allocation.
The problem
On an embedded device with a few hundred KB of SRAM, most interesting models simply don't fit. The usual answer is to shrink the model: quantize harder, prune, pick a smaller architecture, and hope the accuracy hit is acceptable.
TiGrIS takes the other approach. It keeps the model you trained and rearranges the computation so that only a small working set lives in SRAM at any moment. Weights and intermediate spills go to flash or PSRAM. What comes out is a binary plan that the runtime executes as a flat sequence of kernel calls, with no interpreter, no tensor allocator, and no dynamic memory at all.
Quick start
pip install tigris-ml
# Will this model fit in 256KB SRAM + 16MB flash?
tigris analyze mobilenetv2.onnx -m 256K -f 16M
warning: input axis 0 (batch_size) has no fixed size; using 1
pass --input-shape NAME:1x3x224x224 to compile for another shape
╭──────────────────────── TiGrIS - mobilenetv2 ────────────────────────╮
│ Operators 65 │
│ Tensors 244 (66 activations) │
│ Peak memory (naive) 5.74 MiB │
│ Largest tensor 1x96x112x112 (4.59 MiB) │
│ Dtype float32 │
│ Input input 1x3x224x224 float32 │
│ Output output 1x1000 float32 │
╰──────────────────────────────────────────────────────────────────────╯
╭──────────────────────────────── SRAM ────────────────────────────────╮
│ Budget 256.00 KiB │
│ Scheduled peak 252.00 KiB (4.3% of naive peak) │
│ Stages 58 │
│ Spill / reload I/O 26.21 MiB / 27.55 MiB │
│ │
│ Need tiling 47 of 58 stages │
│ tileable 11 (138 tiles, max halo 2) │
╰──────────────── PASS - tiling resolves all stages ─────────────────╯
╭─────────────────────────────── Flash ────────────────────────────────╮
│ Budget 16.00 MiB │
│ Weight data 13.30 MiB │
│ Plan overhead 0.01 MiB │
│ Plan (est.) 13.31 MiB │
│ Plan INT8 (est.) 3.34 MiB │
╰───────────────────────── PASS - plan fits ─────────────────────────╯
The naive peak is 5.74 MiB. TiGrIS schedules it into 256 KiB through temporal partitioning and spatial tiling. analyze runs on your laptop; no hardware required.
That model is a stock export with a free batch dimension. TiGrIS binds a dimension the model leaves open to 1 and says so; pass --input-shape input:4x3x224x224 to compile for a different one.
From ONNX to embedded
Three steps take a model from ONNX to a C file you can drop into your firmware project:
# 1. Analyze feasibility against a memory budget
tigris analyze model.onnx -m 256K -f 16M
# 2. Compile to a binary plan (weights read-in-place from flash)
tigris compile model.onnx -m 256K -f 16M --xip -o model.tgrs
# 3. Generate a backend-specific C harness for your target
tigris codegen model.tgrs --backend esp-nn -o model.c
The .tgrs plan is target-agnostic: the same file runs on an ESP32, a Cortex-M, or a POSIX host. The kernel backend is chosen at codegen time and decides which kernel library the generated C calls into. The operator and backend matrix shows which operators are native, which fall back, and which are rejected.
What you get
tigris compile writes a single .tgrs file holding the operator schedule, tile parameters, quantization tables, and the weights.
tigris codegen produces a C harness that loads the plan and hands it to the runtime: buffer and arena declarations, a target entry point, and the glue for reaching the plan bytes. --format app emits a standalone program. --format core emits a source and header for firmware that already owns its entry point, arenas, and input source, so several generated cores can coexist in one binary. The codegen reference documents the flags.
Link the harness against tigris-runtime and your kernel library, and you have a working inference binary.
Further reading
- Getting started: installation, first compile, deploying to ESP32
- Core compatibility data: exact compiler/runtime releases and plan schemas
- Introducing TiGrIS: design, benchmarks, how tiling works
- CLI reference: every flag, every subcommand
Maintainer
TiGrIS is maintained by RAWS Labs. For applied embedded-ML engineering or collaboration, see raws.at.
Development
git clone https://github.com/raws-labs/tigris
cd tigris
pip install -e ".[dev]"
pytest
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 tigris_ml-0.7.0.tar.gz.
File metadata
- Download URL: tigris_ml-0.7.0.tar.gz
- Upload date:
- Size: 196.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c926c1a230e41b3b4202e811db8f77a8f44f085f3ccc78347f2d3245dca7fbe7
|
|
| MD5 |
7642fe4cdddba44485d50e2304a2fad9
|
|
| BLAKE2b-256 |
0b5c0e25053fa65e612068cef97e73b19139752429197dfdb98f6311a81b9661
|
Provenance
The following attestation bundles were made for tigris_ml-0.7.0.tar.gz:
Publisher:
publish.yml on raws-labs/tigris
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tigris_ml-0.7.0.tar.gz -
Subject digest:
c926c1a230e41b3b4202e811db8f77a8f44f085f3ccc78347f2d3245dca7fbe7 - Sigstore transparency entry: 2819662011
- Sigstore integration time:
-
Permalink:
raws-labs/tigris@6fb8b7a7438eeb8416c3d1d5c5151bb9a1ef74b5 -
Branch / Tag:
refs/tags/v0.7.0 - Owner: https://github.com/raws-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@6fb8b7a7438eeb8416c3d1d5c5151bb9a1ef74b5 -
Trigger Event:
release
-
Statement type:
File details
Details for the file tigris_ml-0.7.0-py3-none-any.whl.
File metadata
- Download URL: tigris_ml-0.7.0-py3-none-any.whl
- Upload date:
- Size: 114.2 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 |
bc1d5d604312e57a66d577f18c53ea7db5bbcfe77f16aec5336764f35b27cd20
|
|
| MD5 |
0bd4f1828a0c13e2aa6cd43cb4df9fff
|
|
| BLAKE2b-256 |
988ad94999d9b74d8fe482b2538bd53d7db043348679de5a7e403cbe411636fc
|
Provenance
The following attestation bundles were made for tigris_ml-0.7.0-py3-none-any.whl:
Publisher:
publish.yml on raws-labs/tigris
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tigris_ml-0.7.0-py3-none-any.whl -
Subject digest:
bc1d5d604312e57a66d577f18c53ea7db5bbcfe77f16aec5336764f35b27cd20 - Sigstore transparency entry: 2819662073
- Sigstore integration time:
-
Permalink:
raws-labs/tigris@6fb8b7a7438eeb8416c3d1d5c5151bb9a1ef74b5 -
Branch / Tag:
refs/tags/v0.7.0 - Owner: https://github.com/raws-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@6fb8b7a7438eeb8416c3d1d5c5151bb9a1ef74b5 -
Trigger Event:
release
-
Statement type: