It's done. That's pretty easy. Next, I would like to use the actual machine. The actual machine should have different gates that it is good at depending on the type. In reality, the transpiler converts the gates, so I don't think there will be any problem, but just in case, let's take a look.
Let's start with IonQ. It is an ion trap type.
Copy
from braket.aws import AwsDevice
device = AwsDevice("arn:aws:braket:::device/qpu/ionq/ionQdevice")
print(device.properties.action['braket.ir.jaqcd.program'].supportedOperations)
{'type': 'pegasus', 'shape': [16]}
qubit number = 5760
This one has information on 5760 qubits of Pegasus coupling.
Finally, let's look at Borealis, which does not have much information. This one has a gate set, although the other quantum gates are different for continuous quantities.
As you can see, there are many different types of machines. The last two, D-Wave and Borealis, are used differently from other machines. We are also looking forward to another machine that will soon be available for special use. In the meantime, let's see how to run it on the actual machine.
Let's try to calculate quantum entanglement on Rigetti's machine.