We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. https://github.com/aws/amazon-braket-examples/blob/main/examples/pulse_control/3_Bell_pair_with_pulses_Rigetti.ipynb
This notebook uses hardcoded qubits:
a=10 b=113
This works for the topology of the current Rigetti devices, but it would be great if the notebook would work for any future Rigetti devices, as well.
Describe the solution you'd like A random pair of connected qubits can be generated from a given device as follows:
device
import numpy as np connectivity = device.properties.paradigm.connectivity.connectivityGraph qubit_a = np.random.choice(list(connectivity.keys())) neighbors = connectivity[str(qubit)] qubit_b = neighbors[np.random.randint(len(neighbors))]
Describe alternatives you've considered
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
https://github.com/aws/amazon-braket-examples/blob/main/examples/pulse_control/3_Bell_pair_with_pulses_Rigetti.ipynb
This notebook uses hardcoded qubits:
This works for the topology of the current Rigetti devices, but it would be great if the notebook would work for any future Rigetti devices, as well.
Describe the solution you'd like
A random pair of connected qubits can be generated from a given
device
as follows:Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: