Skip to content

Commit

Permalink
Merge pull request #66 from qiboteam/iqm_twpa
Browse files Browse the repository at this point in the history
twpa parameters in qubits
  • Loading branch information
andrea-pasquale authored Oct 17, 2023
2 parents 06c2d5a + 867db1c commit 54391e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions iqm5q.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def create(runcard_path=RUNCARD):
for i in range(11, 14)
)
channels |= Channel("L4-14", port=controller[("device_hdawg2", f"SIGOUTS/0")])

# TWPA pump(EraSynth)
channels |= Channel("L3-32")

Expand Down Expand Up @@ -173,14 +172,14 @@ def create(runcard_path=RUNCARD):
for q in range(0, 5):
qubits[q].drive = channels[f"L4-{15 + q}"]
qubits[q].flux = channels[f"L4-{6 + q}"]
qubits[q].twpa = channels[f"L3-32"]
channels[f"L4-{6 + q}"].qubit = qubits[q]

# assign channels to couplers and sweetspots(operating points)
for c, coupler in enumerate(couplers.values()):
coupler.flux = channels[f"L4-{11 + c}"]
# Is this needed ?
# channels[f"L4-{11 + c}"].qubit = qubits[f"c{c}"]

instruments = {controller.name: controller}
instruments.update({lo.name: lo for lo in local_oscillators})
instruments = load_instrument_settings(runcard, instruments)
Expand Down

0 comments on commit 54391e9

Please sign in to comment.