QuEra Computing has released an open-source simulator designed to make one of quantum computing's harder problems slightly less painful. Tsim, a GPU-accelerated tool for simulating quantum circuits with non-Clifford gates, posted to arXiv on April 1, 2026, with the code freely available on GitHub. The paper, authored by Rafael Haenel, Xiuzhe Luo, and Chen Zhao, all QuEra Computing Inc. researchers in Boston, claims roughly 600 nanoseconds per shot on an 85-qubit circuit running on an NVIDIA GH200 processor and says it runs up to five orders of magnitude faster than the existing quizx simulator for circuits with low magic state requirements.
The core problem is error correction. Surface codes, the leading approach for protecting logical qubits from noise, require a steady supply of T gates, the non-Clifford operation that gives quantum computers their computational edge. Running those T gates through real hardware is expensive. Simulating them has been slow. Tsim uses ZX-calculus, a graphical language for reasoning about quantum circuits, along with stabilizer rank decomposition to accelerate the simulation of circuits containing T gates, Tdagger gates, and arbitrary single-qubit rotations, according to the arXiv paper.
The architecture breaks the problem into parts. Tsim translates quantum programs into ZX diagrams, where Pauli noise channels appear as parameterized vertices. It factors the diagram into a classical part representing the Tanner graph and a quantum part containing the observable circuit. Both define a new basis of error mechanisms. The observable diagram computes marginal probabilities for autoregressive sampling, with the whole pipeline JIT-compiled via XLA kernels that run on GPU hardware, per the GitHub repository.
What researchers actually get is an API that mirrors Stim, the widely used open-source Clifford simulator from Google's quantum team. Tsim adds non-Clifford instructions on top of that familiar interface. For groups already using Stim for Clifford circuit work, dropping in Tsim for the T-gate portion of an error correction experiment requires minimal porting. The GitHub page shows pip install instructions and CUDA support for GPU-equipped machines.
The performance claims are specific: for distillation circuits at 35 and 85 qubits, cultivation circuits, and rotated surface code circuits, Tsim achieves sampling throughput approaching what Stim delivers for Clifford-only circuits of equivalent size. The five-orders-of-magnitude comparison to quizx is exact in its framing: quizx, the existing open-source T-gate simulator, does not use GPU acceleration. Tsim does. For low-magic circuits, where the number of T gates per shot is modest, that difference compounds, according to the GitHub benchmarks.
Open-source options for simulating T gates have been limited. Stim handles Clifford gates efficiently but stops at non-Clifford operations. Quizx simulates T gates but without GPU acceleration. Tsim occupies that middle ground, and making it freely available means hardware teams, academic groups, and error correction researchers can run simulations without negotiating access to proprietary software or cloud time on a quantum system.
Whether that changes anything depends on what the community does with it. Tsim is a tool, not a result. It will not directly improve error rates on any hardware. What it may do is let researchers simulate larger T-gate circuits more quickly, which means faster iteration on error correction code designs, syndrome extraction circuits, and the distillation factories that supply logical T gates to a surface code. Faster simulation does not guarantee faster progress, but it removes one friction point.
The caveats are routine for an open-source tooling release. The performance numbers come from the authors' own benchmarks on their own hardware. Real-world speedup varies depending on circuit structure and whether the ZX decomposition approach maps well onto the problem. Tsim's strength is low-magic circuits. Circuits requiring large numbers of T gates per logical operation behave differently, and the paper does not claim uniform speedup across all regimes. The paper is a preprint on arXiv, not a peer-reviewed result. All three authors are QuEra employees, and QuEra builds neutral atom quantum hardware. Researchers working on other qubit modalities should test the tool on their own circuits before drawing conclusions about relative performance.
What is worth noting is the open-source choice. QuEra did not have to release this. Making Tsim freely available and citing prior work by Matthew Sutcliffe and Aleks Kissinger on stabilizer rank decomposition suggests the group is trying to build on an existing academic foundation rather than carve out a proprietary advantage. That is a reasonable posture for a tooling release targeting the research community, and it is the thing most likely to determine whether this actually moves anything.
† Consider adding attribution: '[per the GitHub benchmarks]' or '[according to the paper]'. If kept unattributed, add † footnote: 'Source-reported; not independently verified.'