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
The Tesseract Python interface is compatible with the Sinter framework, which is a powerful tool for large-scale decoding, benchmarking, and error-rate estimation.
487
+
488
+
#### The TesseractSinterDecoder Object
489
+
All Sinter examples rely on this utility function to provide the Sinter-compatible Tesseract decoder.
490
+
491
+
```python
492
+
import sinter
493
+
import stim
494
+
from sinter._decoding._decoding import sample_decode
495
+
496
+
from src.tesseract_decoder import tesseract_sinter_compat as tesseract_module
497
+
from src import tesseract_decoder
498
+
499
+
# Define a function that returns a dictionary mapping a decoder name to its
`sinter.sample_decode` is a simpler, non-parallel function for directly decoding a single circuit. It's useful for quick tests and debugging without the overhead of the `sinter.collect` framework.
0 commit comments