Recently, I have been learning AWS Braket, so this series of tutorial posts will record the things or problems that I face.

What is Amazon Braket?

Amazon Braket is a service that gives you access to multiple different types of quantum computers or simulators.

Braket Available Quantum Computers and Simulators

AWS Braket offers several types of QPUs and Simulators that users can utilize. Below, each one’s pros, cons, and suitability are listed.

IonQ

IonQ uses trapped-ion technology, where qubits are represented by the energy states of individual ions (charged atoms) trapped in an electromagnetic field.

Device NameQubit NumbersParadigmDevice ARNRegion
Aria 125gate based w/ error mitigation supportarn:aws:braket:us-east-1::device/qpu/ionq/Aria-1us-east-1
Aria 225gate based w/ error mitigation supportarn:aws:braket:us-east-1::device/qpu/ionq/Aria-2us-east-1
Forte 136gate based w/ error mitigation supportarn:aws:braket:us-east-1::device/qpu/ionq/Forte-1us-east-1
Harmony11gate basedarn:aws:braket:us-east-1::device/qpu/ionq/Harmonyus-east-1
  • Pros
    • Trapped-ion technology with high gate fidelities and low error rates.
    • Suitable for running quantum algorithms with high precision and accuracy.
  • Cons
    • Limited qubit count (currently up to 32 qubits).
    • Relatively slower gate operations compared to some other architectures.
  • Suitable for
    • Simulations
    • Quantum chemistry
    • Algorithms that require high precision but don’t demand a large number of qubits

Rigetti

Rigetti is based on superconducting qubit technology, where qubits are created using superconducting circuits cooled to near absolute zero temperatures.

Device NameQubit NumbersParadigmDevice ARNRegion
Aspen M-379gate basedarn:aws:braket:us-west-1::device/qpu/rigetti/Aspen-M-3us-west-1
  • Pros
    • Superconducting qubit architecture with relatively high qubit counts (up to 80 qubits).
    • Fast gate operations
    • High connectivity between qubits.
  • Cons
    • Lower gate fidelities compared to some other architectures.
    • Susceptible to environmental noise and decoherence.
  • Suitable for
    • Algorithms that require a larger number of qubits and can tolerate some noise, such as quantum machine learning and optimization problems.

QuEra

QuEra is based on neutral atom technology, which uses arrays of individually controlled neutral atoms (typically rubidium or cesium) as qubits. It utilizes field-programmable qubit array (FPQA) hardware, which allows qubit configurations to be rearranged on demand without the need to change the hardware, offering flexibility and controllability.

Device NameQubit NumbersParadigmDevice ARNRegion
Aquila256Analog Hamiltonian Simulationarn:aws:braket:us-east-1::device/qpu/quera/Aquilaus-east-1
  • Pros
    • High qubit counts
    • Long coherence times: maintaining their quantum states for relatively long periods, improving computation accuracy.
    • Lower operational errors
    • Utilization of field-programmable qubit array (FPQA) hardware
    • Potential for high connectivity: The neutral atom architecture allows for high connectivity between qubits.
  • Cons
    • Limited information on gate fidelities and performance
  • Suitable for
    • Running quantum algorithms that require high qubit counts, long coherence times, and high connectivity between qubits.

Oxford Quantum Circuits

Oxford Quantum Circuits uses superconducting qubit technology, similar to Rigetti.

Device NameQubit NumbersParadigmDevice ARNRegion
Lucy8gate basedarn:aws:braket:eu-west-2::device/qpu/oqc/Lucyus-west-2
  • Pros
    • Superconducting qubit architecture with high connectivity and gate fidelities.
    • Suitable for running quantum algorithms with high precision.
  • Cons
    • Currently limited qubit count (up to 8 qubits).
    • Relatively new player in the quantum computing market.
  • Suitable for
    • Testing and developing quantum algorithms that require high precision but don’t demand a large number of qubits.

Amazon Web Services

Device NameQubit NumbersParadigmDevice ARNRegion
SV134state vectorarn:aws:braket:::device/quantum-simulator/amazon/sv1All Regions
TN150tensor networkarn:aws:braket:::device/quantum-simulator/amazon/tn1us-west-2, us-east-1, and eu-west-2
DM117density matrixarn:aws:braket:::device/quantum-simulator/amazon/dm1All Regions
braket_sv25state vectorN/ALocal
braket_dm12tensor networkN/ALocal

Conclusion

So far, we have introduced the QPUs and simulators that Braket offers, along with their pros, cons, and suitability.

In the next chapter, we will show how to use the Braket service.