The braket.aws.qubit
device is the entry point to Amazon Braket’s plethora of remotely accessible devices, from quantum hardware to high-performance simulator backends.
Recommended for:
To learn more, please visit the device documentation:
See all PennyLane-Braket devices:
The braket.aws.qubit
device can be installed with:
pip install amazon-braket-pennylane-plugin
For more details on installation and dependencies, visit the PennyLane-Braket installation page.
Initialize the device in PennyLane with:
import pennylane as qml s3 = ("my-bucket", "my-prefix") remote_device = qml.device("braket.aws.qubit", device_arn="arn:aws:braket:::device/quantum-simulator/amazon/sv1", s3_destination_folder=s3, wires=2)
For more details on device settings and keyword arguments, see the device documentation.