A low-magic universal quantum circuit sampler based on ZX stabilizer rank decomposition
Project description
Tsim
A GPU-accelerated quantum circuit sampler based on ZX-calculus stabilizer rank decomposition. Tsim feels just like Stim, but supports non-Clifford gates.
Installation
Install with pip:
pip install bloqade-tsim
Or with uv:
uv add bloqade-tsim
If your machine has a GPU, use:
pip install "bloqade-tsim[cuda13]"
Quick Start
An introductory tutorial is available here. Please also refer to the documentation.
For many existing scripts, replacing stim with tsim should just work. Tsim mirrors the Stim API and currently supports all Stim instructions.
Additionally, Tsim supports the instructions T, T_DAG, R_Z, R_X, R_Y, and U3.
import tsim
c = tsim.Circuit(
"""
RX 0
R 1
T 0
PAULI_CHANNEL_1(0.1, 0.1, 0.2) 0 1
H 0
CNOT 0 1
DEPOLARIZE2(0.01) 0 1
M 0 1
DETECTOR rec[-1] rec[-2]
"""
)
detector_sampler = c.compile_detector_sampler()
samples = detector_sampler.sample(shots=100)
Architecture
A detailed description of Tsim's architecture is given in arXiv:2604.01059.
Quantum programs are translated into ZX diagrams in which Pauli noise channels appear as parameterized vertices with binary variables $e_i$.
ZX simplification factors the diagram into a classical part that represents the Tanner graph and a quantum part containing the observable circuit. Both parts define a new basis of error mechanisms $f_i = \bigoplus_j T_{ij},e_j$.
The observable diagram is used to compute marginal probabilities for autoregressive sampling. Here, each diagram is decomposed into a sum of Clifford terms via stabilizer rank decomposition, following Sutcliffe and Kissinger (2024), and compiled into binary JAX tensors $g_{tki}$.
At sampling time, JIT-compiled XLA kernels contract $g_{tki}$ with batched noise configurations $f_i^{s}$ to evaluate marginal probabilities and autoregressively sample detector and observable bits.
Differences from Stim
Tsim supports non-deterministic detectors and observables. An important consequence is that Tsim will simulate actual detector samples, whereas Stim only reports detection flips (i.e. detection samples XORed with a noiseless reference sample). Concretely,
c = tsim.Circuit(
"""
X 0
M 0
DETECTOR rec[-1]
"""
)
sampler = c.compile_detector_sampler()
samples = sampler.sample(shots=100)
print(samples)
will report True values, whereas the same circuit would result in False values in Stim. To reproduce the behavior of Stim, you can use the following:
samples = sampler.sample(
shots=100,
use_detector_reference_sample=True,
use_observable_reference_sample=True,
)
When set to True, a noiseless reference sample is computed and XORed with the
results, so that output values represent deviations from the noiseless baseline.
Note that this feature should be used carefully. If detectors or observables are not deterministic, this may lead to incorrect statistics.
Benchmarks
With GPU acceleration, Tsim can achieve sampling throughput for low-magic circuits that approaches the throughput of Stim on Clifford circuits of the same size. The figure below shows a comparison for distillation circuits (35 and 85 qubits), cultivation circuits, and rotated surface code circuits. Tsim can be five orders of magnitude faster than quizx.
Supported Instructions
Tsim supports most Stim instructions. In addition, Tsim defines the following non-Clifford instructions:
T and T_DAG
The T gate applies a π/4 phase rotation around the Z axis, and T_DAG is its inverse:
T 0 1 2 # Apply T to qubits 0, 1, 2
T_DAG 0 # Apply T_DAG to qubit 0
Rotation Gates: R_X, R_Y, R_Z
Rotation gates around the X, Y, and Z axes by an angle θ = α·π (where α is specified as the parameter):
R_X(0.11) 0 # Rotate qubit 0 around X by 0.11π
R_Y(0.25) 1 # Rotate qubit 1 around Y by π/4
R_Z(0.125) 2 # Rotate qubit 2 around Z by π/8
U3 Gate
The general single-qubit unitary with three parameters (θ, φ, λ), each specified as a multiple of π:
U3(0.5, 0.25, 0.125) 0 # Apply U3 with θ=π/2, φ=π/4, λ=π/8
Publications Using Tsim
- Simulating magic state cultivation with few Clifford terms by Kwok Ho Wan and Zhenghao Zhong (2025).
Contributing
We welcome contributions! Please see the contributing guide for details on setting up your development environment, running tests, and code style guidelines.
Citing Tsim
If you use Tsim, please consider citing the paper describing the core simulation approach:
@article{tsim2026,
title={Tsim: Fast Universal Simulator for Quantum Error Correction},
author={Haenel, Rafael and Luo, Xiuzhe and Zhao, Chen},
journal={arXiv preprint arXiv:2604.01059},
year={2026}
}
You may also cite the work by Sutcliffe and Kissinger (2024):
@article{sutcliffe2024fast,
title={Fast classical simulation of quantum circuits via parametric rewriting in the ZX-calculus},
author={Sutcliffe, Matthew and Kissinger, Aleks},
journal={arXiv preprint arXiv:2403.06777},
year={2024}
}
Project details
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 bloqade_tsim-0.1.2.tar.gz.
File metadata
- Download URL: bloqade_tsim-0.1.2.tar.gz
- Upload date:
- Size: 438.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e24c097a15d488f8ac084c7fbe7af7a1a1d3c4a1d3330fa8176cfbac95ae88c4
|
|
| MD5 |
72dfbdf4f7b5846fd271004aadcaf1f4
|
|
| BLAKE2b-256 |
5ee5538d238a89404773903ddc64b52098859b8f17861e988401155954fdf0c0
|
Provenance
The following attestation bundles were made for bloqade_tsim-0.1.2.tar.gz:
Publisher:
release.yml on QuEraComputing/tsim
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bloqade_tsim-0.1.2.tar.gz -
Subject digest:
e24c097a15d488f8ac084c7fbe7af7a1a1d3c4a1d3330fa8176cfbac95ae88c4 - Sigstore transparency entry: 1245796867
- Sigstore integration time:
-
Permalink:
QuEraComputing/tsim@96387b482172810ff0c8d3f08da9e7449f05345c -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/QuEraComputing
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@96387b482172810ff0c8d3f08da9e7449f05345c -
Trigger Event:
push
-
Statement type:
File details
Details for the file bloqade_tsim-0.1.2-py3-none-any.whl.
File metadata
- Download URL: bloqade_tsim-0.1.2-py3-none-any.whl
- Upload date:
- Size: 74.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05a9977bf55e6189755248489659a70ba03fc9e2945246362b018699bffb4437
|
|
| MD5 |
ce72a01a87aa0a2d9712e4975980989c
|
|
| BLAKE2b-256 |
a74de9bbb3be66e5079c8642c1e32749519a5d2b0dea318703646b76855ec6fe
|
Provenance
The following attestation bundles were made for bloqade_tsim-0.1.2-py3-none-any.whl:
Publisher:
release.yml on QuEraComputing/tsim
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bloqade_tsim-0.1.2-py3-none-any.whl -
Subject digest:
05a9977bf55e6189755248489659a70ba03fc9e2945246362b018699bffb4437 - Sigstore transparency entry: 1245796875
- Sigstore integration time:
-
Permalink:
QuEraComputing/tsim@96387b482172810ff0c8d3f08da9e7449f05345c -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/QuEraComputing
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@96387b482172810ff0c8d3f08da9e7449f05345c -
Trigger Event:
push
-
Statement type: