-
Notifications
You must be signed in to change notification settings - Fork 0
Organized readme ++ #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
0a3bab7
Noise more granular control from CLI + added measurement noise
DeDuckProject 5796676
Added plots that attempt to reproduce paper (not there yet)
DeDuckProject 91c9d35
Added project status+reproduction instructions + known differences
DeDuckProject 58f16a6
readme opening more concise.
DeDuckProject 118be7d
Add LICENSE (MIT) and CITATION.cff for v0.1.0 release
DeDuckProject b7090bd
Fix CITATION.cff: remove placeholder ORCID
DeDuckProject 083868d
Add ORCID ID to CITATION.cff
DeDuckProject 74675ed
Add Zenodo DOI (10.5281/zenodo.17137851)
DeDuckProject 234390a
Added ROADMAP.md
DeDuckProject File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| cff-version: 1.2.0 | ||
| message: "If you use this software, please cite it as below." | ||
| type: software | ||
| title: "Stim Implementation of the [[16,4,4]] Tesseract Code" | ||
| abstract: "A complete Stim-based simulation of the Tesseract quantum error correction code with gate-level encoding, error correction rounds, and manual decoding." | ||
| authors: | ||
| - family-names: "Yakar" | ||
| given-names: "Iftach" | ||
| orcid: "https://orcid.org/0009-0003-8795-3794" | ||
| repository-code: "https://github.com/DeDuckProject/tesseract-code-stim" | ||
| url: "https://github.com/DeDuckProject/tesseract-code-stim" | ||
| doi: "10.5281/zenodo.17137851" | ||
| license: MIT | ||
| date-released: 2024-09-16 | ||
| version: "0.1.1" | ||
| keywords: | ||
| - "quantum error correction" | ||
| - "tesseract code" | ||
| - "stim" | ||
| - "quantum computing" | ||
| - "fault tolerance" | ||
| references: | ||
| - type: article | ||
| title: "Demonstration of quantum computation and error correction with a tesseract code" | ||
| authors: | ||
| - family-names: "Reichardt" | ||
| given-names: "Ben W." | ||
| year: 2024 | ||
| url: "https://arxiv.org/abs/2409.04628" | ||
| notes: "arXiv:2409.04628" | ||
| - type: software | ||
| title: "Stim: a fast stabilizer circuit simulator" | ||
| authors: | ||
| - family-names: "Gidney" | ||
| given-names: "Craig" | ||
| year: 2021 | ||
| url: "https://github.com/quantumlib/Stim" | ||
| doi: "10.22331/q-2021-07-06-497" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| MIT License | ||
|
|
||
| Copyright (c) 2024 Tesseract Code Stim Contributors | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| # Roadmap | ||
|
|
||
| This document outlines the next major features and improvements planned for the Tesseract Code Stim implementation. | ||
|
|
||
| ## Upcoming Features | ||
|
|
||
| ### 1. Pre-measurement Pauli Frame Correction | ||
| **GitHub Issue**: [#6](https://github.com/DeDuckProject/tesseract-code-stim/issues/6) | ||
|
|
||
| Currently, Pauli frame corrections are applied after measurement, which differs from the original paper's approach. This feature will: | ||
| - Modify the circuit flow to apply Pauli frame corrections before logical measurements | ||
| - Align the implementation more closely with the experimental procedure described in the paper | ||
| - Potentially improve quantitative reproduction of paper results | ||
|
|
||
| ### 2. Logical vs Unencoded Qubit Benchmarking | ||
|
|
||
| Implement comprehensive benchmarking to compare the performance of encoded logical qubits against unencoded physical qubits under realistic conditions: | ||
| - Add memory decoherence modeling for idle qubits (currently missing) | ||
| - Implement realistic T1/T2 coherence times based on trapped-ion parameters | ||
| - Generate comparative plots showing logical vs physical qubit fidelity over time | ||
|
|
||
| ### 3. Alternative Noise Models | ||
|
|
||
| Extend the `noise_cfg.py` API to support custom and alternative noise models beyond depolarizing noise: | ||
| - Implement amplitude damping and phase damping channels | ||
| - Add support for correlated noise models | ||
| - Enable user-defined custom noise channels via configuration | ||
| - Add noise model parameter sweeps for comparative analysis | ||
| - Support for experimental noise characterization data import | ||
|
|
||
| ## Contributing | ||
|
|
||
| We welcome contributions to any of these roadmap items! Please: | ||
| 1. Check existing GitHub issues for related discussions | ||
| 2. Open a new issue to discuss your proposed implementation approach | ||
| 3. Submit pull requests with tests and documentation | ||
|
|
||
| For questions or suggestions about the roadmap, please open an issue with the `roadmap` label. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| Tesseract EC Experiment Metadata | ||
| =================================== | ||
|
|
||
| Timestamp: 2025-09-16 22:48:05 | ||
| Total runtime: 00:00:27.687 (27.687 seconds) | ||
|
|
||
| Experiment Parameters: | ||
| -------------------- | ||
| Rounds: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 35, 40, 45, 50] | ||
| Noise levels: [0.00115] | ||
| Shots per data point: 10000 | ||
| Apply Pauli frame correction: True | ||
| Encoding mode: 9a | ||
| Sweep channel noise: False | ||
| Measurement error rate: 0.00147 | ||
| Mode: Fixed noise rates | ||
| EC 1Q rate (fixed): 2.9e-05 | ||
| EC 2Q rate (fixed): 0.00115 | ||
| Noise configuration: Sweeping EC/decoding noise | ||
| - EC noise applied: During error correction rounds and decoding | ||
| - EC 1Q rate: Swept parameter | ||
| - EC 2Q rate: Swept parameter (same as 1Q) | ||
| - Channel noise: None (0.0) | ||
| - Encoding: Noiseless |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.