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.

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.dev20250905190634-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.dev20250905190634-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.dev20250905190634-py313-none-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded Python 3.13macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250905190634-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.dev20250905190634-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.dev20250905190634-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.dev20250905190634-py312-none-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded Python 3.12macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250905190634-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.dev20250905190634-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.dev20250905190634-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.dev20250905190634-py311-none-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded Python 3.11macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250905190634-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.dev20250905190634-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.dev20250905190634-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.dev20250905190634-py310-none-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded Python 3.10macOS 11.0+ ARM64

tesseract_decoder-0.1.1.dev20250905190634-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.dev20250905190634-py313-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py313-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dcd278ed1acc271609207b6f270fb6c89c708f63a2b0b3203f0e4bb6a99df40
MD5 b81a61512ddeed7349c5bb0f5276817b
BLAKE2b-256 c65220cc52f20668f7071f85de6c5cb280ebdaaf600c16a5614a1d2ecc495d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py313-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7098f9ef45e31f1a41e22559c2fc8bcc8c6e0175ac9d6b49271b852fd3798bd5
MD5 a499d011006c73f6be71f5081a70f4d4
BLAKE2b-256 24a888d00ebcdbca58b290f93c63d871587da11077ded770ad5dcd378ddd54e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py313-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57022c7da3af1bcc2c3e770c4c0497deba6d11021993aad8cf8d36016d1f43d5
MD5 891e5790695ffdb6c8ad7c2b3a6913a4
BLAKE2b-256 a6e3083e9364ee6e501f9c6890d96874b23a141dc9ad9239a6b8fa51a1dc74f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py313-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e904b91f01a88ce24ed7d04913f6dd133cf729b99bacf2157fab8d172089c3b8
MD5 bd1ea4beedeea8ff5bd9eb377f00ae9e
BLAKE2b-256 2ab7e72b3f82a0246c6499bfc8f5c7ee83d23e43eba8080c91f3392643fd6aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py312-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fd1551c135f813fd3395c072f15300fe1bcf586b5ec183c3078fdb48b3c0255
MD5 16affefa11447b06a1b53d6c23d48d35
BLAKE2b-256 c4de6e2496df019d9d8d2a5a2f8e85e4a8418333c857b203678dbf44ef066769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py312-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 560baf8e8c43f871c005ae312ddbc3202bd76bb4a31f14244bd26887074517a2
MD5 08a9763c71577c3395a6dea60264e936
BLAKE2b-256 76731352f3d43e5ab36836cd86f82c941b92e13692d5ac2cfa2fb562aaba9f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py312-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b390a5c75bf827d9deb73fee1367e2baa5598186b49308b0ad4178e2c363d31
MD5 81a59a9489ae71e6497cb7e8ac4c6a5e
BLAKE2b-256 6a22b49acebf2ef8ddcd1f92b4bb1f548e0a4bf6c12690d7bc1fe597089e4382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py312-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e2b11c95f64784fddda0ed3ea0dbbe1ce76caf47be908674edffbb74172f9e33
MD5 e61aa3212423bbca2312e72d82f72ddb
BLAKE2b-256 a29ad929232610ece6f57f6e0562c396e3ca6285ac35ef46fc91197e1d9dd9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py311-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95643938b877eb850143bab316dfb3c31b72452aceb20ba15f9bee0af0b728a0
MD5 43597b99438b8a9b5e223279d9b91164
BLAKE2b-256 50a52ce725f15d23fa6661d991bf3db500ec450485def69e28f3a400fd099e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py311-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04e1d14ef67002c5e34d19227a47715ff97aa53348df3e21998e06955ca85ddb
MD5 f964a6473382df21fc18c5037e28a516
BLAKE2b-256 0eeda521fd8a48c6630c72e02332164b260d7dda1b53f812b5d1996ee02a722e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py311-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c5f04b577dee42f1b4cb13aecf4b3039aba3a6790db8d87587cb7974ff22421
MD5 60c4f3ca24a793bec8b2e0d236b30e66
BLAKE2b-256 00e6440749b5d3baaf9d0bbb85b6eb1976831ec47ee18d0fcec3ec883fd6197f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py311-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5e884b4c6b4283ce134b74c9b962949c216d50a743e1935dd92cc0f67bd0e7a
MD5 9c411e0783a98a535ea5b9042a5d3bba
BLAKE2b-256 fada0e8d630dde0ccdb4da896a37ce2242d9c41d2415200ff59916124cc9b5f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py310-none-manylinux_2_39_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8705b1b0654f3c6bc58fa59c4ebd1e16f8b4ef6af6a96b370ca7710e941bfe05
MD5 39045a6d6520815d0673985a0b42576f
BLAKE2b-256 982ac1fa17d8df8e64aad06ece87900c7aa87624cca1bb391b32666cd2f5ea0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py310-none-manylinux_2_35_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 674e7e5df733d860dcb008aaf614b5293bdd403618573b7619952329f6ab0c04
MD5 5b07f07403d872dc940b957b8aaed808
BLAKE2b-256 b5787a52bc2e46cb6b1b388ee03651f754236dc609b116afe869d6226fdb95e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py310-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbff3fbff0dac278363682c177371d6a0e110eb069282c77aaf87bf9ff5c5955
MD5 64f88603b4140f0a6a1d7761035caa93
BLAKE2b-256 60ba0ebd93e00e9c4d65893861f4467e968a4a3107ca8d72479da1cc2ecb2b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tesseract_decoder-0.1.1.dev20250905190634-py310-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd7807e3e0e3633d3094eb75460f1458269302e4480deccf4e01c58886d35d77
MD5 e5a3780327b0ab950a2989e49591f82e
BLAKE2b-256 49767c9bba44fd026e6dc2b6c441a8559d3aac48fa42301edc7715d62333871e

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