Skip to main content

A search-based decoder for quantum error correction (QEC).

Project description

Tesseract Decoder

A Search-Based Decoder for Quantum Error Correction.

Licensed under the Apache 2.0 open-source license C++

InstallationUsagePython InterfacePaperHelpCitationContact

Tesseract is a Most Likely Error decoder designed for Low Density Parity Check (LDPC) quantum error-correcting codes. It applies pruning heuristics and manifold orientation techniques during a search over the error subsets to identify the most likely error configuration consistent with the observed syndrome. Tesseract achieves significant speed improvements over traditional integer programming-based decoders while maintaining comparable accuracy at moderate physical error rates.

We tested the Tesseract decoder for:

  • Surface codes
  • Color codes
  • Bivariate-bicycle codes
  • Transversal CNOT protocols for surface codes

Features

  • A* search: deploys A* search while running a Dijkstra algorithm with early stop for high performance.
  • Stim and DEM Support: processes Stim circuit files and Detector Error Model (DEM) files with arbitrary error models. Zero-probability error instructions are automatically removed when a DEM is loaded.
  • Parallel Decoding: uses multithreading to accelerate the decoding process, making it suitable for large-scale simulations.
  • Efficient Beam Search: implements a beam search algorithm to minimize decoding cost and enhance efficiency. Sampling and Shot Range Processing: supports sampling shots from circuits. When a detection error model is provided without an accompanying circuit, Tesseract requires detection events from files using --in. The decoder can also process specific shot ranges for flexible experiment setups.
  • Detailed Statistics: provides comprehensive statistics output, including shot counts, error counts, and processing times.
  • Heuristics: includes flexible heuristic options: --beam, --det-penalty, --beam-climbing, --no-revisit-dets, --at-most-two-errors-per-detector, and --pqlimit to improve performance while maintaining a low logical error rate. To learn more about these options, use ./bazel-bin/src/tesseract --help
  • Visualization tool: open the viz directory in your browser to view decoding results. See viz/README.md for instructions on generating the visualization JSON.

Installation

Tesseract relies on the following external libraries:

  • argparse: For command-line argument parsing.
  • nlohmann/json: For JSON handling (used for statistics output).
  • Stim: For quantum circuit simulation and error model handling.

Build Instructions

Tesseract uses Bazel as its build system. To build the decoder:

bazel build src:all

Running Tests

Unit tests are executed with Bazel. Run the quick test suite using:

bazel test //src:all

By default the tests use reduced parameters and finish in under 30 seconds. To run a more exhaustive suite with additional shots and larger distances, set:

TESSERACT_LONG_TESTS=1 bazel test //src:all

Usage

The file tesseract_main.cc provides the main entry point for Tesseract Decoder. It can decode error events from Stim circuits, DEM files, and pre-existing detection event files.

Basic Usage:

./tesseract --circuit CIRCUIT_FILE.stim --sample-num-shots N --print-stats

To decode pre-generated detection events, provide the input file using --in SHOTS_FILE --in-format FORMAT.

Example with Advanced Options:

./tesseract \
        --pqlimit 1000000 \
        --at-most-two-errors-per-detector \
        --det-order-seed 232852747 \
        --circuit circuit_file.stim \
        --sample-seed 232856747 \
        --sample-num-shots 10000 \
        --threads 32 \
        --print-stats \
        --beam 23 \
        --num-det-orders 1 \
        --shot-range-begin 582 \
        --shot-range-end 583

Example Usage

Sampling Shots from a Circuit:

./tesseract --circuit surface_code.stim --sample-num-shots 1000 --out predictions.01 --out-format 01

Using a Detection Event File:

./tesseract --in events.01 --in-format 01 --dem surface_code.dem --out decoded.txt

Using a Detection Event File and Observable Flips:

./tesseract --in events.01 --in-format 01 --obs_in obs.01 --obs-in-format 01 --dem surface_code.dem --out decoded.txt

Tesseract supports reading and writing from all of Stim's standard output formats.

Performance Optimization

Here are some tips for improving performance:

  • Parallelism over shots: increase --threads to leverage multicore processors for faster decoding.
  • Beam Search: use --beam to control the trade-off between accuracy and speed. Smaller beam sizes result in faster decoding but potentially lower accuracy.
  • Beam Climbing: enable --beam-climbing for enhanced cost-based decoding.
  • At most two errors per detector: enable --at-most-two-errors-per-detector to improve performance.
  • Priority Queue limit: use --pqlimit to limit the size of the priority queue.

Output Formats

  • Observable flips output: predictions of logical errors.
  • DEM usage frequency output: if --dem-out is specified, outputs estimated error frequencies.
  • Statistics output: includes number of shots, errors, low confidence shots, and processing time.

Python Interface

Full Python wrapper documentation

This repository contains the C++ implementation of the Tesseract quantum error correction decoder, along with a Python wrapper. The Python wrapper/interface exposes the decoding algorithms and helper utilities, allowing Python users to leverage this high-performance decoding algorithm.

For installation:

pip install tesseract-decoder

The following example demonstrates how to create and use the Tesseract decoder using the Python interface.

from tesseract_decoder import tesseract
import stim
import numpy as np


# 1. Define a detector error model (DEM)
dem = stim.DetectorErrorModel("""
    error(0.1) D0 D1 L0
    error(0.2) D1 D2 L1
    detector(0, 0, 0) D0
    detector(1, 0, 0) D1
    detector(2, 0, 0) D2
""")

# 2. Create the decoder configuration
config = tesseract.TesseractConfig(dem=dem, det_beam=50)

# 3. Create a decoder instance
decoder = config.compile_decoder()

# 4. Simulate detector outcomes
syndrome = np.array([0, 1, 1], dtype=bool)

# 5a. Decode to observables
flipped_observables = decoder.decode(syndrome)
print(f"Flipped observables: {flipped_observables}")

# 5b. Alternatively, decode to errors
decoder.decode_to_errors(syndrome)
predicted_errors = decoder.predicted_errors_buffer
# Indices of predicted errors
print(f"Predicted errors indices: {predicted_errors}")
# Print properties of predicted errors
for i in predicted_errors:
    print(f"    {i}: {decoder.errors[i]}")

Good Starting Points for Tesseract Configurations:

The Tesseract paper recommends two setup for starting your exploration with tesseract:

(1) Long-beam setup:

tesseract_config = tesseract.TesseractConfig(
    dem=dem,
    pqlimit=1_000_000,
    det_beam=20,
    beam_climbing=True,
    num_det_orders=21,
    det_order=tesseract_decoder.utils.DetOrder.DetIndex,
    no_revisit_dets=True,
)

(2) Short-beam setup:

tesseract_config = tesseract.TesseractConfig(
    dem=dem,
    pqlimit=200_000,
    det_beam=15,
    beam_climbing=True,
    num_det_orders=16,
    det_order=tesseract_decoder.utils.DetOrder.DetIndex,
    no_revisit_dets=True,
)

For det_order, you can use two other options of DetIndex and DetCoordinate as well. These values balance decoding speed and accuracy across the benchmarks reported in the paper and can be adjusted for specific use cases.

Help

We are committed to providing a friendly, safe, and welcoming environment for all. Please read and respect our Code of Conduct.

Citation

When publishing articles or otherwise writing about Tesseract Decoder, please cite the following:

@misc{beni2025tesseractdecoder,
    title={Tesseract: A Search-Based Decoder for Quantum Error Correction},
    author = {Aghababaie Beni, Laleh and Higgott, Oscar and Shutty, Noah},
    year={2025},
    eprint={2503.10988},
    archivePrefix={arXiv},
    primaryClass={quant-ph},
    doi = {10.48550/arXiv.2503.10988},
    url={https://arxiv.org/abs/2503.10988},
}

Contact

For any questions or concerns not addressed here, please email tesseract-decoder-dev@google.com.

Disclaimer

Tesseract Decoder is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.

Copyright 2025 Google LLC.

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

tesseract_decoder-0.1.1.dev20250930021520-py313-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded Python 3.13manylinux: glibc 2.39+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py313-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded Python 3.13manylinux: glibc 2.35+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py313-none-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded Python 3.13macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250930021520-py313-none-macosx_10_13_x86_64.whl (3.1 MB view details)

Uploaded Python 3.13macOS 10.13+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py312-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded Python 3.12manylinux: glibc 2.39+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py312-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded Python 3.12manylinux: glibc 2.35+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py312-none-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded Python 3.12macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250930021520-py312-none-macosx_10_13_x86_64.whl (3.1 MB view details)

Uploaded Python 3.12macOS 10.13+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py311-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded Python 3.11manylinux: glibc 2.39+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py311-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded Python 3.11manylinux: glibc 2.35+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py311-none-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded Python 3.11macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250930021520-py311-none-macosx_10_13_x86_64.whl (3.1 MB view details)

Uploaded Python 3.11macOS 10.13+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py310-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded Python 3.10manylinux: glibc 2.39+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py310-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded Python 3.10manylinux: glibc 2.35+ x86-64

tesseract_decoder-0.1.1.dev20250930021520-py310-none-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded Python 3.10macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250930021520-py310-none-macosx_10_13_x86_64.whl (3.1 MB view details)

Uploaded Python 3.10macOS 10.13+ x86-64

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py313-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py313-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8ec92e555d20c9f7469d2efc2447a69b95ff4bdaa1f0ba699e1f221ae98c797
MD5 49d5503c6b26f1b70c553f5b96e8780a
BLAKE2b-256 2cac3646487215951983d3b78f6472ec476d8c382f98ba98e4f20febda76d228

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py313-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py313-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a45432bbc17197b4004df408352972556ccfa04f6d2a81a7539720d8b3d4a6f
MD5 b3e485719167ec05ddf121ac91d32708
BLAKE2b-256 433831d868d9ad86d1344ae656229cfb237c8823f4a1d6ed202caccde74a4354

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py313-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py313-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db50ddeed026594967db676c63d9223bede75b021ec9b1397ef70e388141d071
MD5 889f5443568f1306fa761fb763567fab
BLAKE2b-256 86aea810ea09bfc02f3d35ac2c3cd53b27a616c18eaec4685fedc87da4e18e92

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py313-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py313-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26f99e0364cd28fa453a93346e849d7f32a4df6d2eaa435fdbcdc7ea257b99be
MD5 193184aebafc745ac5ebbd20eea26e68
BLAKE2b-256 d25a3ce914259ddf722922522f85daccb455437f975844694958b91e33f0a4ff

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py312-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py312-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 709c300999f91ecb67d17b17ad77bf9bbef299cf2349b5209f7cba851a2722fb
MD5 b3e737aa968773bb80461454d729fd64
BLAKE2b-256 6532d2639d2874ff9588c05da82cc17a7d2204c4d77ffc4ecb80d0e38f7ce4d5

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py312-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py312-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 932073c7dfc64bfe0067393e802417858613cea0a865be5651597bbbe24290ae
MD5 983ea703ddf093a7706971e88566bd2e
BLAKE2b-256 2ef384b702a3b091bc1e4f26acad04e99542702899df615d53a3bb9a06e557b6

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py312-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py312-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 affb242866147f2fa51c85eb8207c5b89e88a2c9d5e0e2f1203532c3122296b0
MD5 d787347fa77978e5d6600c11c807a367
BLAKE2b-256 596a21dfbfb7a63c69e444181afb2fab42a39d0dc1a2035ac51d97f3f157695b

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py312-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py312-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a8553f7ad5853b2258f7835e32f7da836159b68183ad3e5cf1ebbf36ce0113f7
MD5 abac6389126d60f8d20b1028f97f95bf
BLAKE2b-256 f8bba683439f56df2acd9a28dd40221f7b1fdcb4f3eed7f9b73833ae4eed7cd2

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py311-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py311-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6971c2ecbaa640419cfe4ffc503cc3bebae9faf72bd07a411f4d9be22d4e22f4
MD5 e4bce8ac37fecfb0e73d2329e79d6dcb
BLAKE2b-256 0ceb595842984851d07c8b8bbe8c0527df6415ce3dc7f7b2de5f9af1db414a4b

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py311-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py311-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94198359ee1c3e1d5a6c9d5e8ec4330499ba51ffdc0aa8027abe73755701414a
MD5 c952e02e9721c0d1253895b55b243c82
BLAKE2b-256 51c04e263e63f47a02959e3db0fa196750816d94c9d8fd99fd9f970f7e6f0d33

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py311-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py311-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d02d34b0842c9da7a0f93f60b30e9f150a185773649ce5c90bd2d1e868263347
MD5 8998cbf71a196f5d8a7ae216ea6f3434
BLAKE2b-256 dbdcd0c34fa4122ad25c4f87a10bcb8b1477cf9bc59f2ca920dfd6f2b77a5e2d

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py311-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py311-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2a1cd5c1152e1254e0a08ce5a5508bc0716deb26da989aa00a6d985b4684722
MD5 6bb9b7ad3fd061426df7d02f6f567d01
BLAKE2b-256 3af40073768b2c821020d1b9bfd6efe6ac2e3ac6ea53ccfbbc937b4119967c2c

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py310-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py310-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 446dca17780410d03f39c06674666e187e8d8317bdc3d57ab1384c7d17d7139b
MD5 6ffc6ece29929b97f17eeb14769e1a8d
BLAKE2b-256 600a3467e75bbb946072cf5dcdf38e03de79e6a8bd8442a6536eaaa6d70b6fa5

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py310-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py310-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b6578da37cb2495cdd3dae94c6086d94c0441ed2586ecf955a651a744369a90
MD5 b6d11ca959bf3fe38cd2020c681e7494
BLAKE2b-256 e853a4836db1253a01b2466205395da2bb8633d2b6ebfc46aa61f496b06c668d

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py310-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py310-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c1030bbb671103b59662070e7a8be8c3550c10224b892217e7774ca8c45bb51
MD5 674228a822172fddf4420614329fdeb2
BLAKE2b-256 608c348ec21304aad64ad54c165551700d78cb7df0df04ebf96ef9f83f1a7748

See more details on using hashes here.

File details

Details for the file tesseract_decoder-0.1.1.dev20250930021520-py310-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250930021520-py310-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5b21efb38e78dde98149e3f10bdc9fcf9dfc5f3960095d56e4f4740b16ad765
MD5 5331bca112b73be16990af17a9a9b831
BLAKE2b-256 1b8363fcbcc6bf7ec32debed92d5cdd263452fb8d6e4bb83875a70312883aee8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page