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

feat: ankaa2 pulse #615

Merged
merged 23 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c2a4e02
qubit_spectroscopy_sweep.py updated
peterkomar-aws Jul 24, 2024
432e7b4
updated pulse notebook 1
peterkomar-aws Jul 24, 2024
82c4a51
update pulse notebook 2
peterkomar-aws Jul 24, 2024
766498c
update pulse notebook 3
peterkomar-aws Jul 24, 2024
6e58bc8
update pulse notebook 4
peterkomar-aws Jul 24, 2024
07f96c0
delete results.json and model.tar.gz
peterkomar-aws Jul 24, 2024
5af83b5
update pulse section in README.md
peterkomar-aws Jul 24, 2024
9bbcdb7
update Verbatim_Compilation.ipynb
peterkomar-aws Jul 24, 2024
3ba6c14
add Ankaa frames to qubit_spectrscopy_sweep.py
peterkomar-aws Aug 21, 2024
f26e5dc
make 1_Bringup_experiments.ipynb use Ankaa-2
peterkomar-aws Aug 21, 2024
e065c81
make 2_Native_gate_calibration.ipynb use Ankaa-2
peterkomar-aws Aug 21, 2024
f47293f
make 3_Bell_pair_with_pulses_Rigetti.ipynb use Ankaa-2
peterkomar-aws Aug 21, 2024
188a189
make 4_Build_single_qubit_gates.ipynb use Ankaa-2
peterkomar-aws Aug 21, 2024
008a43a
make Verbatim_Compilation.ipynb use Ankaa-2
peterkomar-aws Aug 21, 2024
54ca037
fix markdown text in Verbatim_Compilation.ipynb
peterkomar-aws Aug 21, 2024
9b2c67a
Merge branch 'main' into feature/ankaa2-pulse
AbeCoull Aug 22, 2024
c88b621
Merge branch 'main' into feature/ankaa2-pulse
yitchen-tim Aug 26, 2024
2c992e6
Update requirements.txt
speller26 Aug 26, 2024
a3eb635
Update rig_pulse_device_capabilities.json
yitchen-tim Aug 26, 2024
194937f
Merge branch 'feature/ankaa2-pulse' of https://github.com/amazon-brak…
yitchen-tim Aug 26, 2024
a9afaa6
Update rig_pulse_device_capabilities.json
yitchen-tim Aug 26, 2024
45a9402
update notebook waveforms
yitchen-tim Aug 26, 2024
9f0e3fb
Update test_all_notebooks.py
speller26 Aug 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,11 @@ This folder contains examples that illustrate the use of Amazon Braket Hybrid Jo

* [**Native Gate Calibrations**](examples/pulse_control/2_Native_gate_calibrations.ipynb)

This tutorial shows how to retrieve the calibrations of native gates for Rigetti's Aspen devices and submit a circuit with custom gate calibrations.
This tutorial shows how to retrieve the calibrations of native gates for Rigetti's Ankaa devices and submit a circuit with custom gate calibrations.

* [**Bell pair with pulses (Rigetti)**](examples/pulse_control/3_Bell_pair_with_pulses_Rigetti.ipynb)

This tutorial shows creating a Bell state with cross-resonance pulses on Rigetti's Aspen device.
This tutorial shows creating a Bell state with cross-resonance pulses on Rigetti's Ankaa device.

* [**Build single qubit gates**](examples/pulse_control/4_Build_single_qubit_gates.ipynb)

Expand Down
250 changes: 125 additions & 125 deletions examples/braket_features/Verbatim_Compilation.ipynb

Large diffs are not rendered by default.

104 changes: 53 additions & 51 deletions examples/pulse_control/1_Bringup_experiments.ipynb

Large diffs are not rendered by default.

230 changes: 131 additions & 99 deletions examples/pulse_control/2_Native_gate_calibrations.ipynb

Large diffs are not rendered by default.

235 changes: 119 additions & 116 deletions examples/pulse_control/3_Bell_pair_with_pulses_Rigetti.ipynb

Large diffs are not rendered by default.

65 changes: 39 additions & 26 deletions examples/pulse_control/4_Build_single_qubit_gates.ipynb

Large diffs are not rendered by default.

Binary file removed examples/pulse_control/model.tar.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
"readout_frame": f"q{qubit}_ro_rx_frame",
"spectroscopy_wf": GaussianWaveform(100e-9, 25e-9, 0.1, True),
},
"arn:aws:braket:us-west-1::device/qpu/rigetti/Ankaa-2": {
"drive_frame": f"Transmon_{qubit}_charge_tx",
"readout_frame": f"Transmon_{qubit}_readout_tx",
"spectroscopy_wf": GaussianWaveform(100e-9, 25e-9, 0.1, True),
},
}
drive_frame = device.frames[experiment_configuration[device_arn]["drive_frame"]]
readout_frame = device.frames[experiment_configuration[device_arn]["readout_frame"]]
Expand Down
72 changes: 0 additions & 72 deletions examples/pulse_control/results.json

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ boto3==1.35.0
amazon-braket-default-simulator==1.26.0
amazon-braket-pennylane-plugin==1.28.0
amazon-braket-schemas==1.22.0
amazon-braket-sdk==1.84.0
amazon-braket-sdk==1.86.0
amazon-braket-algorithm-library==1.4.13
cvxpy==1.5.3
ipykernel==6.29.5
Expand Down
Loading