iqm-pulse 10.5.0__py3-none-any.whl → 11.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- iqm/pulse/gates/default_gates.py +10 -1
- iqm/pulse/gates/reset.py +3 -9
- {iqm_pulse-10.5.0.dist-info → iqm_pulse-11.0.0.dist-info}/METADATA +1 -1
- {iqm_pulse-10.5.0.dist-info → iqm_pulse-11.0.0.dist-info}/RECORD +7 -7
- {iqm_pulse-10.5.0.dist-info → iqm_pulse-11.0.0.dist-info}/LICENSE.txt +0 -0
- {iqm_pulse-10.5.0.dist-info → iqm_pulse-11.0.0.dist-info}/WHEEL +0 -0
- {iqm_pulse-10.5.0.dist-info → iqm_pulse-11.0.0.dist-info}/top_level.txt +0 -0
iqm/pulse/gates/default_gates.py
CHANGED
|
@@ -68,7 +68,9 @@ _implementation_library: dict[str, dict[str, type[GateImplementation]]] = {
|
|
|
68
68
|
"delay": {"wait": Delay},
|
|
69
69
|
"measure": {
|
|
70
70
|
"constant": Measure_Constant,
|
|
71
|
-
|
|
71
|
+
},
|
|
72
|
+
"measure_fidelity": {
|
|
73
|
+
"constant": Measure_Constant,
|
|
72
74
|
"shelved_constant": Shelved_Measure_Constant,
|
|
73
75
|
},
|
|
74
76
|
"prx": {
|
|
@@ -134,6 +136,13 @@ _quantum_ops_library = {
|
|
|
134
136
|
implementations=_implementation_library["measure"],
|
|
135
137
|
factorizable=True,
|
|
136
138
|
),
|
|
139
|
+
QuantumOp(
|
|
140
|
+
"measure_fidelity",
|
|
141
|
+
0,
|
|
142
|
+
("key",),
|
|
143
|
+
implementations=_implementation_library["measure_fidelity"],
|
|
144
|
+
factorizable=True,
|
|
145
|
+
),
|
|
137
146
|
QuantumOp(
|
|
138
147
|
"prx",
|
|
139
148
|
1,
|
iqm/pulse/gates/reset.py
CHANGED
|
@@ -62,15 +62,9 @@ class Reset_Conditional(CompositeGate):
|
|
|
62
62
|
for q in self.locus
|
|
63
63
|
if "drive" in self.builder.component_channels[q] and q in self.builder.chip_topology.component_to_probe_line
|
|
64
64
|
)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
RESET_MEASUREMENT_KEY, feedback_key=RESET_FEEDBACK_KEY
|
|
69
|
-
)
|
|
70
|
-
except (ValueError, KeyError):
|
|
71
|
-
probe_timebox = self.build("measure", resettable).probe_timebox( # type: ignore[attr-defined]
|
|
72
|
-
RESET_MEASUREMENT_KEY, feedback_key=RESET_FEEDBACK_KEY
|
|
73
|
-
)
|
|
65
|
+
probe_timebox = self.build("measure", resettable).probe_timebox( # type: ignore[attr-defined]
|
|
66
|
+
RESET_MEASUREMENT_KEY, feedback_key=RESET_FEEDBACK_KEY
|
|
67
|
+
)
|
|
74
68
|
virtual_channels = set()
|
|
75
69
|
probes = set()
|
|
76
70
|
resets = []
|
|
@@ -13,14 +13,14 @@ iqm/pulse/gates/__init__.py,sha256=l07iD52FiKKQyVFwswRapZMqEE0XfILSc4aZ5sXGJo4,8
|
|
|
13
13
|
iqm/pulse/gates/barrier.py,sha256=WhYV70lf4lh4Wa9UZuMk2lp9JbUQIu8lzewRC2P7pNE,2546
|
|
14
14
|
iqm/pulse/gates/conditional.py,sha256=NE-1GYlFcfaCmRuhqGEIhtoJmBArhyY5KhVnO4y4zng,6289
|
|
15
15
|
iqm/pulse/gates/cz.py,sha256=72KO8OINZRVOye4g4quHAEzwNplOlIZE0hU1IjE8Gfk,33366
|
|
16
|
-
iqm/pulse/gates/default_gates.py,sha256=
|
|
16
|
+
iqm/pulse/gates/default_gates.py,sha256=G76Nz2XAuwH2i5KIrzSp4pTBSbe9vcAjfT12PfPYMYA,7645
|
|
17
17
|
iqm/pulse/gates/delay.py,sha256=nST9dY2JFp_mpKhiSfsYa5yL4hFKcNJSAyCzXjhauQg,3767
|
|
18
18
|
iqm/pulse/gates/enums.py,sha256=ATwb6vZYpfgQ1gQyFPW53JyIKrdAP3FPHm6jV-t9OAk,2532
|
|
19
19
|
iqm/pulse/gates/flux_multiplexer.py,sha256=sk84ItEvkx7Z0pCHt8MCCczBe7_BHNvqS4_oeNghZw8,9757
|
|
20
20
|
iqm/pulse/gates/measure.py,sha256=5yG5dQeDljZewrPdy6vwejz5m3KU-9SlXQco9oAyssw,44488
|
|
21
21
|
iqm/pulse/gates/move.py,sha256=siy9SBIFohknYV6zEJuUZv03cDEOiS53p9jFYm-5WAA,17470
|
|
22
22
|
iqm/pulse/gates/prx.py,sha256=gWT4vEL6BZvRNOkwlxSg_V8nq7baFgh2K-V8q3bqLjI,25203
|
|
23
|
-
iqm/pulse/gates/reset.py,sha256=
|
|
23
|
+
iqm/pulse/gates/reset.py,sha256=JzUurqhncTQ3Ti9tJyQHSybSXZsGslV0K-Dz5GRliPI,7066
|
|
24
24
|
iqm/pulse/gates/rz.py,sha256=7XPS7moiiaqZ5rWx8_U_yyADFexofkQOj4QK3NeUCgg,9700
|
|
25
25
|
iqm/pulse/gates/sx.py,sha256=3s7lo5ib2HZh-kzZd95-JqL41LxCX5GA4QZ0h7u3WCQ,1736
|
|
26
26
|
iqm/pulse/gates/u.py,sha256=EUX84XkawqLhwRaJ1MxSKB33VpC8XDsFu875uHNo0WI,5403
|
|
@@ -39,8 +39,8 @@ iqm/pulse/playlist/visualisation/templates/static/logo.png,sha256=rbfQZ6_UEaztpY
|
|
|
39
39
|
iqm/pulse/playlist/visualisation/templates/static/moment.min.js,sha256=4iQZ6BVL4qNKlQ27TExEhBN1HFPvAvAMbFavKKosSWQ,53324
|
|
40
40
|
iqm/pulse/playlist/visualisation/templates/static/vis-timeline-graph2d.min.css,sha256=svzNasPg1yR5gvEaRei2jg-n4Pc3sVyMUWeS6xRAh6U,19837
|
|
41
41
|
iqm/pulse/playlist/visualisation/templates/static/vis-timeline-graph2d.min.js,sha256=OqCqCyA6JnxPz3PGXq_P_9VuSqWptgNt5Ev3T-xjefQ,570288
|
|
42
|
-
iqm_pulse-
|
|
43
|
-
iqm_pulse-
|
|
44
|
-
iqm_pulse-
|
|
45
|
-
iqm_pulse-
|
|
46
|
-
iqm_pulse-
|
|
42
|
+
iqm_pulse-11.0.0.dist-info/LICENSE.txt,sha256=R6Q7eUrLyoCQgWYorQ8WJmVmWKYU3dxA3jYUp0wwQAw,11332
|
|
43
|
+
iqm_pulse-11.0.0.dist-info/METADATA,sha256=qduIs6XgXV1DYLywtcgVYAM1rN7Gn0fIUc6WkIsMy40,14551
|
|
44
|
+
iqm_pulse-11.0.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
45
|
+
iqm_pulse-11.0.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
|
|
46
|
+
iqm_pulse-11.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|