iqm-pulse 9.17.0__py3-none-any.whl → 9.18.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/__init__.py +2 -1
- iqm/pulse/gates/default_gates.py +2 -2
- iqm/pulse/gates/move.py +8 -1
- {iqm_pulse-9.17.0.dist-info → iqm_pulse-9.18.0.dist-info}/METADATA +1 -1
- {iqm_pulse-9.17.0.dist-info → iqm_pulse-9.18.0.dist-info}/RECORD +8 -8
- {iqm_pulse-9.17.0.dist-info → iqm_pulse-9.18.0.dist-info}/LICENSE.txt +0 -0
- {iqm_pulse-9.17.0.dist-info → iqm_pulse-9.18.0.dist-info}/WHEEL +0 -0
- {iqm_pulse-9.17.0.dist-info → iqm_pulse-9.18.0.dist-info}/top_level.txt +0 -0
iqm/pulse/gates/__init__.py
CHANGED
|
@@ -48,7 +48,7 @@ from iqm.pulse.gates.default_gates import _quantum_ops_library
|
|
|
48
48
|
from iqm.pulse.gates.delay import Delay
|
|
49
49
|
from iqm.pulse.gates.flux_multiplexer import FluxMultiplexer_SampleLinear
|
|
50
50
|
from iqm.pulse.gates.measure import Measure_Constant, Measure_Constant_Qnd, Shelved_Measure_Constant
|
|
51
|
-
from iqm.pulse.gates.move import MOVE_CRF_CRF, MOVE_TGSS_CRF
|
|
51
|
+
from iqm.pulse.gates.move import MOVE_CRF_CRF, MOVE_SLEPIAN_CRF, MOVE_TGSS_CRF
|
|
52
52
|
from iqm.pulse.gates.prx import (
|
|
53
53
|
Constant_PRX_with_smooth_rise_fall,
|
|
54
54
|
PRX_DRAGCosineRiseFall,
|
|
@@ -105,6 +105,7 @@ _exposed_implementations: dict[str, type[GateImplementation]] = {
|
|
|
105
105
|
Shelved_Measure_Constant,
|
|
106
106
|
PRX_ModulatedDRAGCosineRiseFall,
|
|
107
107
|
MOVE_CRF_CRF,
|
|
108
|
+
MOVE_SLEPIAN_CRF,
|
|
108
109
|
MOVE_TGSS_CRF,
|
|
109
110
|
RZ_ACStarkShift_CosineRiseFall,
|
|
110
111
|
RZ_ACStarkShift_smoothConstant,
|
iqm/pulse/gates/default_gates.py
CHANGED
|
@@ -35,7 +35,7 @@ from iqm.pulse.gates.cz import (
|
|
|
35
35
|
from iqm.pulse.gates.delay import Delay
|
|
36
36
|
from iqm.pulse.gates.flux_multiplexer import FluxMultiplexer_SampleLinear
|
|
37
37
|
from iqm.pulse.gates.measure import Measure_Constant, Shelved_Measure_Constant
|
|
38
|
-
from iqm.pulse.gates.move import MOVE_CRF_CRF, MOVE_TGSS_CRF
|
|
38
|
+
from iqm.pulse.gates.move import MOVE_CRF_CRF, MOVE_SLEPIAN_CRF, MOVE_TGSS_CRF
|
|
39
39
|
from iqm.pulse.gates.prx import (
|
|
40
40
|
PRX_DRAGCosineRiseFall,
|
|
41
41
|
PRX_DRAGCosineRiseFallSX,
|
|
@@ -89,7 +89,7 @@ _default_implementations = {
|
|
|
89
89
|
"crf_acstarkcrf": CZ_CRF_ACStarkCRF,
|
|
90
90
|
"slepian_acstarkcrf": CZ_Slepian_ACStarkCRF,
|
|
91
91
|
},
|
|
92
|
-
"move": {"tgss_crf": MOVE_TGSS_CRF, "crf_crf": MOVE_CRF_CRF},
|
|
92
|
+
"move": {"tgss_crf": MOVE_TGSS_CRF, "crf_crf": MOVE_CRF_CRF, "slepian_crf": MOVE_SLEPIAN_CRF},
|
|
93
93
|
"cc_prx": {
|
|
94
94
|
"prx_composite": CCPRX_Composite,
|
|
95
95
|
"prx_composite_drag_crf": CCPRX_Composite_DRAGCosineRiseFall,
|
iqm/pulse/gates/move.py
CHANGED
|
@@ -44,7 +44,7 @@ from exa.common.data.parameter import Parameter, Setting
|
|
|
44
44
|
from iqm.pulse.gates.cz import FluxPulseGate
|
|
45
45
|
from iqm.pulse.playlist.instructions import Block, Instruction, VirtualRZ, Wait
|
|
46
46
|
from iqm.pulse.playlist.schedule import Schedule
|
|
47
|
-
from iqm.pulse.playlist.waveforms import CosineRiseFall, TruncatedGaussianSmoothedSquare
|
|
47
|
+
from iqm.pulse.playlist.waveforms import CosineRiseFall, Slepian, TruncatedGaussianSmoothedSquare
|
|
48
48
|
from iqm.pulse.timebox import TimeBox
|
|
49
49
|
from iqm.pulse.utils import normalize_angle
|
|
50
50
|
|
|
@@ -137,6 +137,13 @@ class MOVE_CRF_CRF(MOVE_CustomWaveforms, coupler_wave=CosineRiseFall, qubit_wave
|
|
|
137
137
|
"""Qubit-resonator MOVE gate using the CRF waveform for the coupler and the qubit flux pulse."""
|
|
138
138
|
|
|
139
139
|
|
|
140
|
+
class MOVE_SLEPIAN_CRF(MOVE_CustomWaveforms, coupler_wave=Slepian, qubit_wave=CosineRiseFall):
|
|
141
|
+
# type: ignore[call-arg]
|
|
142
|
+
"""Qubit-resonator MOVE gate using the Slepian waveform for the coupler flux pulse and the
|
|
143
|
+
CRF waveform for the qubit flux pulse.
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
|
|
140
147
|
class MOVE_TGSS_CRF(MOVE_CustomWaveforms, coupler_wave=TruncatedGaussianSmoothedSquare, qubit_wave=CosineRiseFall):
|
|
141
148
|
# type: ignore[call-arg]
|
|
142
149
|
"""Qubit-resonator MOVE gate using the TGSS waveform for the coupler flux pulse and the
|
|
@@ -8,16 +8,16 @@ iqm/pulse/scheduler.py,sha256=Y5WL8TwAEzoSnboie8scv9skC5YBmdXKAJ4KTnYn0xU,22690
|
|
|
8
8
|
iqm/pulse/timebox.py,sha256=w3R6VafBXx_cGWrcvI_6x1e6JII_9v1vxQoRSGIjtXE,16591
|
|
9
9
|
iqm/pulse/utils.py,sha256=HyTkMD0er_rZnvDZWM1WscOFxaxGMyRAW_Aw36b0Hdc,7998
|
|
10
10
|
iqm/pulse/validation.py,sha256=-tZWrW201t4nbTQWeZ8M9DixzoN8B0Q63IP57BfDAz0,10733
|
|
11
|
-
iqm/pulse/gates/__init__.py,sha256=
|
|
11
|
+
iqm/pulse/gates/__init__.py,sha256=5QJglgKW1u2C1Ew1-x7ApAEfoNl97HUTvdkE7dC_6kk,13030
|
|
12
12
|
iqm/pulse/gates/barrier.py,sha256=WhYV70lf4lh4Wa9UZuMk2lp9JbUQIu8lzewRC2P7pNE,2546
|
|
13
13
|
iqm/pulse/gates/conditional.py,sha256=3tW5kVt2M2xaTJxaixTErU5DTe91F0uE9BN9kopBEkQ,6242
|
|
14
14
|
iqm/pulse/gates/cz.py,sha256=HAKdR7puauiOIPikW5proQXf_oWauivrPuX1e632h9k,20162
|
|
15
|
-
iqm/pulse/gates/default_gates.py,sha256=
|
|
15
|
+
iqm/pulse/gates/default_gates.py,sha256=w29BbeA3QGSusyGQX5ST9vFvqpSz2zRRrHF1XzSfKc0,9567
|
|
16
16
|
iqm/pulse/gates/delay.py,sha256=nST9dY2JFp_mpKhiSfsYa5yL4hFKcNJSAyCzXjhauQg,3767
|
|
17
17
|
iqm/pulse/gates/enums.py,sha256=ATwb6vZYpfgQ1gQyFPW53JyIKrdAP3FPHm6jV-t9OAk,2532
|
|
18
18
|
iqm/pulse/gates/flux_multiplexer.py,sha256=5psam8_3z796z2nL-A2RKzDGTRDE-7GJ4F0aYCgaPUY,9691
|
|
19
19
|
iqm/pulse/gates/measure.py,sha256=sLr3j7P4C1VAODuUZRWg5tDkPjI0CGFBtQ_mendAHbA,43935
|
|
20
|
-
iqm/pulse/gates/move.py,sha256=
|
|
20
|
+
iqm/pulse/gates/move.py,sha256=zxlVElaMDxKpdPuvqO3EWhdc8HM6c1VYNUTNsNokiAw,17463
|
|
21
21
|
iqm/pulse/gates/prx.py,sha256=yd87JbHU1y40EOzgA1m4m-y8BX6XkHij_uw7o0t-B1s,24596
|
|
22
22
|
iqm/pulse/gates/reset.py,sha256=vYbzaA0pg3r5Oh6Edpu6NPlYoq1M7_tEWnf-7SHig4o,7589
|
|
23
23
|
iqm/pulse/gates/rz.py,sha256=GWOlaHITJojQruu4R8-jIBez0OgFg4olarZkkxIRwRg,9459
|
|
@@ -38,8 +38,8 @@ iqm/pulse/playlist/visualisation/templates/static/logo.png,sha256=rbfQZ6_UEaztpY
|
|
|
38
38
|
iqm/pulse/playlist/visualisation/templates/static/moment.min.js,sha256=4iQZ6BVL4qNKlQ27TExEhBN1HFPvAvAMbFavKKosSWQ,53324
|
|
39
39
|
iqm/pulse/playlist/visualisation/templates/static/vis-timeline-graph2d.min.css,sha256=svzNasPg1yR5gvEaRei2jg-n4Pc3sVyMUWeS6xRAh6U,19837
|
|
40
40
|
iqm/pulse/playlist/visualisation/templates/static/vis-timeline-graph2d.min.js,sha256=OqCqCyA6JnxPz3PGXq_P_9VuSqWptgNt5Ev3T-xjefQ,570288
|
|
41
|
-
iqm_pulse-9.
|
|
42
|
-
iqm_pulse-9.
|
|
43
|
-
iqm_pulse-9.
|
|
44
|
-
iqm_pulse-9.
|
|
45
|
-
iqm_pulse-9.
|
|
41
|
+
iqm_pulse-9.18.0.dist-info/LICENSE.txt,sha256=R6Q7eUrLyoCQgWYorQ8WJmVmWKYU3dxA3jYUp0wwQAw,11332
|
|
42
|
+
iqm_pulse-9.18.0.dist-info/METADATA,sha256=pcJpDrA0hhsKBwlehi500s7fTUSsH7gyJHcr2Ma8Des,14524
|
|
43
|
+
iqm_pulse-9.18.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
44
|
+
iqm_pulse-9.18.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
|
|
45
|
+
iqm_pulse-9.18.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|