Skip to content

Commit b006b7e

Browse files
committed
decoding
1 parent c883762 commit b006b7e

File tree

2 files changed

+32
-20
lines changed

2 files changed

+32
-20
lines changed

Project.toml

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,8 @@
1-
authors = ["Quinten Preiss"]
21
name = "MonitoredQuantumCircuits"
32
uuid = "d8bf802c-9929-44b5-8e59-9c739daaeb6f"
3+
authors = ["Quinten Preiss"]
44
version = "0.1.0-DEV"
55

6-
[compat]
7-
CSV = "0.10.14"
8-
CUDA = "5.7.2"
9-
DataFrames = "1.6.1"
10-
FileIO = "1.16.3"
11-
Graphs = "1.11.1"
12-
MPI = "0.20.22"
13-
Makie = "0.22.2"
14-
PythonCall = "0.9.20"
15-
QuantumClifford = "0.9.18"
16-
StatsBase = "0.34.3"
17-
cuStateVec = "1.3.1"
18-
julia = "1.10.4"
19-
206
[deps]
217
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
228
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
@@ -29,21 +15,37 @@ Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
2915
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
3016
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
3117
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
18+
PyQDecoders = "17f5de1a-9b79-4409-a58d-4d45812840f7"
3219
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
3320
QuantumClifford = "0525e862-1e90-11e9-3e4d-1b39d7109de1"
3421
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
3522
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
3623
cuStateVec = "92f7fd98-d22e-4c0d-85a8-6ade11b672fb"
3724

25+
[weakdeps]
26+
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
27+
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
28+
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
29+
3830
[extensions]
3931
MonitoredQuantumCircuitsCUDAExt = "CUDA"
4032
MonitoredQuantumCircuitsMPIExt = "MPI"
4133
MonitoredQuantumCircuitsMakieExt = "Makie"
4234

35+
[compat]
36+
CSV = "0.10.14"
37+
CUDA = "5.7.2"
38+
DataFrames = "1.6.1"
39+
FileIO = "1.16.3"
40+
Graphs = "1.11.1"
41+
MPI = "0.20.22"
42+
Makie = "0.22.2"
43+
PyQDecoders = "0.2.2"
44+
PythonCall = "0.9.20"
45+
QuantumClifford = "0.9.18"
46+
StatsBase = "0.34.3"
47+
cuStateVec = "1.3.1"
48+
julia = "1.10.4"
49+
4350
[extras]
4451
MPIPreferences = "3da0fdf6-3ccc-4f1b-acd9-58baa6c99267"
45-
46-
[weakdeps]
47-
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
48-
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
49-
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using PyQDecoders
2+
using MonitoredQuantumCircuits
3+
4+
function decodeNishimori(result::QiskitResult, geometry::HoneycombGeometry{Open})
5+
6+
measurements = result.measurementOutcomes
7+
8+
9+
10+
end

0 commit comments

Comments
 (0)