Skip to content
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

289 classic fib decoder #391

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2467066
fib test failing
grace-harper Nov 24, 2022
4bacf82
adding unit test
Nov 24, 2022
3210819
Arc decoder (#287)
quantumjim Dec 1, 2022
3efd757
Issue 312 - Refactoring of Layout and Extensions (#319)
dsvandet Feb 21, 2023
cb36e98
Decodoku (#288)
quantumjim Feb 21, 2023
8d67e8e
Updates to ArcCircuit since December (#307)
quantumjim Feb 22, 2023
3602740
Union Find decoder and surface code circuit (#310)
quantumjim Feb 23, 2023
6eb3701
create CodeCircuit class (#329)
quantumjim Mar 6, 2023
e539175
Added Cmake as a requirement (#336)
dsvandet Mar 9, 2023
3653349
Decoding graph attributes (#338)
tommasopeduzzi Mar 14, 2023
b09c84f
ClAYG Decoder (#350)
tommasopeduzzi Mar 17, 2023
13f0ce6
choose edge flip probabilities to saturate at 1/2 (#349)
awcross1 Mar 17, 2023
7c66cd6
fix edge and change ipykernal version (#354)
quantumjim Mar 31, 2023
845de28
Fix spelling in symplectic.py (#348)
grace-harper Apr 10, 2023
96489f1
added HeavyHex decoder to additional resources (#357)
grace-harper Apr 21, 2023
ec6c63f
Allow error graph to be constructed from list of nodes (#360)
quantumjim Apr 21, 2023
009af07
352 uf for arc (#362)
quantumjim May 5, 2023
97b19ac
capping qiskit-terra version due to deprecation warning for qiskit.qu…
grace-harper May 12, 2023
38e9e1e
370 speedup (#371)
quantumjim Jun 2, 2023
0bd7f96
339 integrate stim (#359)
quantumjim Jun 9, 2023
ccb68d0
Upgraded to qiskit-terra>=0.24.0 (#385)
grace-harper Sep 19, 2023
cb2f486
Fix a small bug (#384)
inmzhang Sep 19, 2023
76ddecd
Update README.md (#377)
dcmckayibm Sep 19, 2023
358306b
Issue #247 - Replace `execute` with `backend.run()` in `qiskit-qec` (…
robotastray Sep 19, 2023
3c92e48
Issue #367 - Migration from QasmSimulator to qiskit_aer's AerSimulato…
robotastray Sep 20, 2023
72510c2
Removed old files and test (#376)
dsvandet Sep 21, 2023
7218e0b
Fix 202 issues (#373)
quantumjim Sep 22, 2023
7d3ddb4
Corrected preset for xyz2 hexagonal stabilizer code (#343)
dsvandet Sep 22, 2023
ca87e79
389 arc nodes (#390)
quantumjim Oct 2, 2023
403e0ce
* Removed FibonacciDecoderGraph as a separate class and integrated fu…
grace-harper Oct 2, 2023
c8a8653
Remove work.ipynb
grace-harper Oct 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
echo TOX_ENV=$tox_env >> $GITHUB_ENV
- name: Test using tox envs
run: |
tox ${{ env.TOX_ENV }}

tox -vv ${{ env.TOX_ENV }}
lint:
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "additional_resources/HeavyHex.jl"]
path = additional_resources/HeavyHex.jl
url = https://github.com/qiskit-community/HeavyHex.jl
Loading