Skip to content

Commit 3e351be

Browse files
committed
update the readme
1 parent 4031e20 commit 3e351be

File tree

1 file changed

+15
-27
lines changed

1 file changed

+15
-27
lines changed

README.md

+15-27
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,32 @@
11
# Tesseract Decoder
22

3-
A most-likely-error decoder for quantum error correction
3+
A Search-Based Decoder for Quantum Error Correction
44

55
[![Licensed under the Apache 2.0 open-source
66
license](https://img.shields.io/badge/License-Apache%202.0-3c60b1.svg?logo=opensourceinitiative&logoColor=white&style=flat-square)](https://github.com/quantumlib/tesseract-decoder/blob/main/LICENSE)
77

8-
## Introduction
9-
10-
The implementation of [quantum error
11-
correction](https://en.wikipedia.org/wiki/Quantum_error_correction) (QEC)
12-
requires fast and accurate decoders to achieve low logical error rates. Decoding
13-
is an NP-hard optimization problem in the worst case, but there exists a variety
14-
of partial solutions for specific error-correcting codes. The Tesseract Decoder
15-
takes a novel approach: rather than building an algorithm with a polynomial
16-
runtime and using heuristics to make it more accurate, we begin with an
17-
exponential-time algorithm that always identifies the most likely error and use
18-
heuristics to make it faster. The decoder uses [A*
19-
search](https://en.wikipedia.org/wiki/A*_search_algorithm) along with a variety
20-
of pruning heuristics.
8+
## Overview
9+
10+
Tesseract is a Most Likely Error decoder designed for Low Density Parity Check (LDPC) quantum error-correcting codes. It employs the A\* search algorithm to efficiently navigate the exponentially large graph of possible error subsets, identifying the most likely error configuration consistent with the observed syndrome. Tesseract leverages several pruning heuristics and manifold orientation techniques to achieve significant speed improvements over traditional integer programming-based decoders, while maintaining comparable accuracy at moderate physical error rates.
11+
2112
We tested the Tesseract decoder for:
2213

2314
- Surface codes
24-
- Superdense Color codes
15+
- Color codes
2516
- Bivariate-bicycle codes
2617
- Transversal CNOT protocols for surface codes
18+
Stim circuits for these protocols are stored in `testdata/`.
2719

2820
## Features
2921

30-
31-
- **A\* search:** deploys A* search while running a semi Dijkstra algorithm with early stop for high performance.
32-
- **Stim and DEM Support:** Processes Stim circuit files and Detector Error Model (DEM) files for comprehensive error decoding.
22+
- **A\* search:** deploys A* search while running a Dijkstra algorithm with early stop for high performance.
23+
- **Stim and DEM Support:** Processes Stim circuit files and Detector Error Model (DEM) files with arbitrary error models.
3324
- **Parallel Decoding:** Utilizes multi-threading to accelerate the decoding process, making it suitable for large-scale simulations.
3425
- **Efficient Beam Search:** Implements a beam search algorithm to minimize decoding cost and enhance efficiency.
3526
- **Sampling and Shot Range Processing:** Supports sampling shots from circuits and processing specific ranges of shots for flexible experiment setups.
3627
- **Detailed Statistics:** Provides comprehensive statistics output, including shot counts, error counts, and processing times.
37-
- **Heuristics**: Includes heuristics such as beam climbing and at most two errors per detector to improve performance.
28+
- **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/tesseract/tesseract --help`
29+
3830

3931
## Installation
4032

@@ -58,7 +50,7 @@ The tesseract_main.cc file provides the main entry point for the Tesseract decod
5850
Basic Usage:
5951

6052
```bash
61-
./tesseract --circuit <circuit_file> --out <output_file>
53+
./tesseract --circuit <circuit_file.stim> --sample-num-shots <N> --print-stats
6254
```
6355
Example with Advanced Options:
6456

@@ -77,12 +69,11 @@ Example with Advanced Options:
7769
--shot-range-begin 582 \
7870
--shot-range-end 583
7971
```
80-
8172
### Example Usage
8273

8374
Sampling Shots from a Circuit
8475
```bash
85-
./tesseract --circuit surface_code.stim --sample-num-shots 1000 --out sampled_results.txt
76+
./tesseract --circuit surface_code.stim --sample-num-shots 1000 --out predictions.01 --out-format 01
8677
```
8778
Using a Detection Event File
8879
```bash
@@ -92,9 +83,9 @@ Using a Detection Event File and Observable Flips
9283
```bash
9384
./tesseract --in events.01 --in-format 01 --obs_in obs.01 --obs-in-format 01 --dem surface_code.dem --out decoded.txt
9485
```
95-
86+
Tesseract supports reading and writing from all of Stim's standard output formats (see https://github.com/quantumlib/Stim/blob/main/doc/result_formats.md).
9687
### Performance Optimization
97-
* Parallelism: Increase ```--threads``` to leverage multi-core processors for faster decoding.
88+
* Parallelism over shots: Increase ```--threads``` to leverage multi-core processors for faster decoding.
9889
* Beam Search: Use ```--beam``` to control the trade-off between accuracy and speed. Smaller beam sizes result in faster decoding but potentially lower accuracy.
9990
* Beam Climbing: Enable ```--beam-climbing``` for enhanced cost-based decoding.
10091
* At most two errors per detector: Enable ```--at-most-two-errors-per-detector``` to improve performance.
@@ -106,9 +97,6 @@ Using a Detection Event File and Observable Flips
10697
* Statistics output: Includes number of shots, errors, low confidence shots, and processing time.
10798

10899

109-
<!-- ## Installation -->
110-
111-
<!-- ## Usage -->
112100

113101
<!-- ## Citing Tesseract Decoder<a name="how-to-cite-tesseract"> -->
114102

0 commit comments

Comments
 (0)