Calibration-free OrbitQuant for transformer linear projections
Project description
OrbitQuant
OrbitQuant is a calibration-free post-training quantizer for transformer linear projections. It implements the method from OrbitQuant: Data-Agnostic Quantization for Image and Video Diffusion Transformers and exposes it through Hugging Face Transformers, Diffusers, and a direct PyTorch API.
The implementation is clean-room and Apache-2.0 licensed.
Features
- Automatic coverage of registered linear-compatible modules in transformer backbones, independent of model class or modality.
- Built-in support for
torch.nn.Linearand Hugging FaceConv1Dprojections. - Public adapters for custom
F.linear-equivalent module types and transposed weight layouts. - RPBH rotation, exact unit-sphere Lloyd-Max codebooks, packed 2/3/4/6/8-bit weights, and online activation quantization without calibration data.
- Model-specific policies for paper-sensitive AdaLN and output-layer handling.
- Compact
safetensorsartifacts and Hugging Facesave_pretrained()/from_pretrained()integration. - Packed-weight CUDA, Triton, and Metal inference paths that avoid a full dequantized weight matrix.
Embeddings, timestep modules, task heads, and common final projections are kept in source precision by default. Every automatic decision is available as a machine-readable inventory before quantization.
Install
pip install "orbitquant[hf]"
Install the CUDA/Triton and local-kernel loader dependencies with:
pip install "orbitquant[hf,kernels]"
Quantize A Transformers Model
Importing orbitquant registers the backend with supported Transformers and
Diffusers versions. The default target_policy="auto" selects a known
paper policy where applicable and otherwise uses the universal policy.
import torch
import orbitquant
from transformers import AutoModelForCausalLM
config = orbitquant.recipe(
"w4a4",
runtime_mode="auto_fused",
)
model = AutoModelForCausalLM.from_pretrained(
"your-org/your-transformer",
dtype=torch.bfloat16,
quantization_config=config,
)
model.save_pretrained("./your-transformer-orbitquant-w4a4")
Load the packed model after importing the backend:
import orbitquant
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained(
"./your-transformer-orbitquant-w4a4",
device_map="auto",
)
Named recipes are w4a4, w3a3, w2a4, w2a3, and w4a6. They create a
normal OrbitQuantConfig, so every field can be overridden.
Inspect Coverage
Inspect a model before replacing modules:
from orbitquant import inspect_linear_module_policy, recipe
from transformers import AutoModel
model = AutoModel.from_pretrained("your-org/your-transformer")
report = inspect_linear_module_policy(model, recipe("w4a4"))
print(report["action_counts"])
print(report["quantized_modules"])
print(report["skipped_modules"])
print(report["unsupported_linear_modules"])
The universal policy quantizes every registered linear-compatible module except
known embeddings, timestep modules, task/output heads, and explicit skips. It
does not depend on names such as layers, blocks, or a particular model
class.
Use modules_to_convert as an allowlist and define AdaLN/skips with exact names,
substrings, or glob patterns:
from orbitquant import OrbitQuantConfig
config = OrbitQuantConfig(
modules_to_convert=["backbone.*.projection"],
modules_to_use_adaln=["backbone.*.modulation"],
modules_to_not_convert=["*.sensitive_output"],
)
Explicit dtype overrides remain available through modules_dtype_dict.
Quantize An Instantiated Module
For ordinary PyTorch models or frameworks that do not use Hugging Face loading hooks:
from orbitquant import quantize_model, recipe
summary = quantize_model(
model,
recipe("w4a4"),
quantization_device="cuda",
)
print(summary.quantized_modules)
The replacement supports arbitrary leading dimensions and treats the final
dimension as in_features, including sequence, image-token, and video-token
layouts.
Custom Linear Modules
Register a module whose forward operation is equivalent to F.linear. The
adapter describes only its source weight layout and feature attributes:
from orbitquant import register_linear_adapter
register_linear_adapter(
MyLinear,
weight_layout="in_out",
in_features_attr="input_size",
out_features_attr="output_size",
)
OrbitQuant stores every replacement in canonical [out_features, in_features]
layout. Modules with additional routing, tensor-parallel communication, sparse
expert selection, or non-linear forward semantics need an architecture-aware
adapter; the inspection report lists unregistered linear candidates instead of
silently replacing them.
Diffusers
Quantize the denoiser component of a pipeline:
import torch
from diffusers import DiffusionPipeline
from orbitquant import quantize_pipeline, recipe, save_quantized_pipeline_component
pipe = DiffusionPipeline.from_pretrained(
"black-forest-labs/FLUX.2-klein-4B",
torch_dtype=torch.bfloat16,
)
config = recipe("w4a4", target_policy="flux2")
summary = quantize_pipeline(
pipe,
config,
component="transformer",
quantization_device="cuda",
)
save_quantized_pipeline_component(
pipe,
"./flux2-klein-orbitquant-w4a4",
config=config,
component="transformer",
source_model_id="black-forest-labs/FLUX.2-klein-4B",
summary=summary,
)
Published FLUX, Z-Image, and Wan repositories are compact Diffusers component artifacts. Image model cards contain the matching pipeline code, native generation settings, and a ten-prompt full-resolution BF16-vs-OrbitQuant comparison matrix.
Load a published component artifact together with its recorded source pipeline:
import torch
from huggingface_hub import snapshot_download
from orbitquant import load_quantized_pipeline_from_artifact
artifact_dir = snapshot_download(
"WaveCut/FLUX.1-schnell-OrbitQuant-W4A4",
repo_type="model",
)
pipe = load_quantized_pipeline_from_artifact(
artifact_dir,
torch_dtype=torch.bfloat16,
runtime_mode="auto_fused",
)
Packed Runtime
runtime_mode="auto_fused" is the default:
| Device | Dispatch |
|---|---|
| CUDA | Native packed CUDA package, then Triton packed matmul |
| MPS | Native packed Metal package |
| CPU | PyTorch reference path |
CUDA and MPS do not silently materialize a full BF16/FP16 weight matrix in
auto_fused. If no packed backend is available, the error includes the missing
backend and installation guidance.
Use the explicit reference path for compatibility or numerical debugging:
config = orbitquant.recipe("w4a4", runtime_mode="dequant_bf16")
Build the ABI3 native package locally without Kernel Hub:
cd native-kernels/orbitquant-packed-matmul
nix --option sandbox relaxed run .#build-and-copy -L
export PYTHONPATH="$PWD/build/<matching-torch-backend-platform-variant>:$PYTHONPATH"
The variant must match the Torch minor version, CUDA or Metal backend, C++ ABI,
architecture, and operating system. See
docs/kernel-audit.md for tested shapes, benchmark
methodology, and local package verification.
Validated Architecture Coverage
The integration suite instantiates and inventories encoder-only, decoder-only, encoder-decoder, causal LM, and vision transformer families:
| Family | Projection type |
|---|---|
| BERT | torch.nn.Linear |
| GPT-2 | Hugging Face Conv1D with transposed source weights |
| Llama | torch.nn.Linear, including GQA projections |
| T5 | encoder and decoder torch.nn.Linear projections |
| ViT | vision transformer torch.nn.Linear projections |
The paper-aligned release artifacts remain FLUX.1-schnell, Z-Image-Turbo, and Wan 2.1 T2V. FLUX.2 Klein is an additional validated diffusion target.
Architecture coverage means the model can be discovered, quantized, executed, saved, and restored without model-name-specific code. It does not guarantee a quality-preserving bit setting. OrbitQuant was evaluated in the paper on image and video diffusion transformers; language and classification models can be more sensitive, and their quality must be measured before publishing a checkpoint. The library exposes module overrides for such recipes but does not silently substitute a different quantization algorithm.
Method Conformance
The implementation follows the paper's shared data-agnostic basis:
- RPBH permutation, Rademacher signs, block FWHT, and orthonormal scaling.
- Offline folded weight rotation with BF16 row norms and quantized unit directions.
- Online per-token norm, normalized activation rotation, nearest-centroid quantization, and rescaling.
- One fixed codebook per
(input dimension, bit width, algorithm version)and no prompt, timestep, or calibration statistics. - INT4 group-64 RTN for model policies that identify dynamic AdaLN projections.
The detailed requirement matrix is in
docs/paper-methodology-audit.md.
Development
uv sync --extra hf --extra dev
uv run pytest -q
uv run ruff check .
License
OrbitQuant is licensed under Apache-2.0. Model artifacts retain the license and provenance of their source checkpoints.
Project details
Release history Release notifications | RSS feed
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 orbitquant-0.2.1.tar.gz.
File metadata
- Download URL: orbitquant-0.2.1.tar.gz
- Upload date:
- Size: 356.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a2ae982ab897dccbcbaa9b995fe9dde4a7bbcbc21624c9c5bfbce0e319e602a
|
|
| MD5 |
00263dc1ffd11de6925cfd9a2a15bc0d
|
|
| BLAKE2b-256 |
5fdfb771065b9dfd3275c99d1534d3c6c5a202f3df58bdc4a421892dcc28441b
|
Provenance
The following attestation bundles were made for orbitquant-0.2.1.tar.gz:
Publisher:
publish-pypi.yml on iamwavecut/OrbitQuant
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orbitquant-0.2.1.tar.gz -
Subject digest:
5a2ae982ab897dccbcbaa9b995fe9dde4a7bbcbc21624c9c5bfbce0e319e602a - Sigstore transparency entry: 2137889310
- Sigstore integration time:
-
Permalink:
iamwavecut/OrbitQuant@f6a1d9767d53b1f63ea522718b7d3b57217d02ae -
Branch / Tag:
refs/heads/main - Owner: https://github.com/iamwavecut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@f6a1d9767d53b1f63ea522718b7d3b57217d02ae -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orbitquant-0.2.1-py3-none-any.whl.
File metadata
- Download URL: orbitquant-0.2.1-py3-none-any.whl
- Upload date:
- Size: 149.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a54ff91a2765122b6dbcea88e5abf1f9f9a98ceafcf862086bcd5c0311f1506
|
|
| MD5 |
b1ba2c3420185c2af574a360720e7f93
|
|
| BLAKE2b-256 |
08fdf4c61ae239a29e24bf74f97ca2507831a67e78c0b3cf7483608c8274ef23
|
Provenance
The following attestation bundles were made for orbitquant-0.2.1-py3-none-any.whl:
Publisher:
publish-pypi.yml on iamwavecut/OrbitQuant
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orbitquant-0.2.1-py3-none-any.whl -
Subject digest:
0a54ff91a2765122b6dbcea88e5abf1f9f9a98ceafcf862086bcd5c0311f1506 - Sigstore transparency entry: 2137889357
- Sigstore integration time:
-
Permalink:
iamwavecut/OrbitQuant@f6a1d9767d53b1f63ea522718b7d3b57217d02ae -
Branch / Tag:
refs/heads/main - Owner: https://github.com/iamwavecut
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@f6a1d9767d53b1f63ea522718b7d3b57217d02ae -
Trigger Event:
workflow_dispatch
-
Statement type: