You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
+
21
12
We tested the Tesseract decoder for:
22
13
23
14
- Surface codes
24
-
-Superdense Color codes
15
+
- Color codes
25
16
- Bivariate-bicycle codes
26
17
- Transversal CNOT protocols for surface codes
18
+
Stim circuits for these protocols are stored in `testdata/`.
27
19
28
20
## Features
29
21
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.
33
24
-**Parallel Decoding:** Utilizes multi-threading to accelerate the decoding process, making it suitable for large-scale simulations.
34
25
-**Efficient Beam Search:** Implements a beam search algorithm to minimize decoding cost and enhance efficiency.
35
26
-**Sampling and Shot Range Processing:** Supports sampling shots from circuits and processing specific ranges of shots for flexible experiment setups.
36
27
-**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
+
38
30
39
31
## Installation
40
32
@@ -58,7 +50,7 @@ The tesseract_main.cc file provides the main entry point for the Tesseract decod
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).
96
87
### 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.
98
89
* Beam Search: Use ```--beam``` to control the trade-off between accuracy and speed. Smaller beam sizes result in faster decoding but potentially lower accuracy.
99
90
* Beam Climbing: Enable ```--beam-climbing``` for enhanced cost-based decoding.
100
91
* 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
106
97
* Statistics output: Includes number of shots, errors, low confidence shots, and processing time.
0 commit comments