Amazon Braket Launches Rigetti Ankaa-2 Superconducting Device

August 26, 2024

Aug. 26, 2024 — AWS has announced the addition of the Rigetti Computing’s latest 84-qubit Ankaa-2 superconducting quantum processor to Amazon Braket, its quantum computing service. In this recent AWS Quantum Technologies blog, Zia Mohammad and Tim Chen introduce the Ankaa-2 device, highlighting its capabilities and demonstrating how users can leverage this new hardware for enhanced quantum computing experiments.


Amazon Braket, the quantum computing service of Amazon Web Services (AWS), enables customers to design and run quantum algorithms and explore applications of quantum computing by providing access to a variety of quantum hardware. Braket’s mission is to reduce technology risk for customers by lowering the barriers to entry to explore quantum computing through a single consistent interface with pay-as-you-go pricing.

Today, we are excited to expand this commitment by onboarding the latest superconducting quantum processor from Rigetti Computing, the 84-qubit Ankaa-2 device, in the US West (N. California) Region. Furthermore, unlike other devices on Amazon Braket which can be limited in availability, Ankaa-2 can execute customer circuits throughout the day. This means that customers in any time zone can run quantum tasks and hybrid jobs at their convenience, opening up new possibilities for uninterrupted experiments and a more efficient use of quantum hardware resources, all on a pay-as-you-go basis. In this post, we will introduce the Rigetti Ankaa-2 device and show some sample code to get you started.

Quantum computing is a rapidly evolving field, with researchers and developers continuously pushing the boundaries of what is possible with current hardware. Compared to the previous Aspen-M-3 family, Ankaa-2 is designed to deliver improved gate operation times and increased median two-qubit gate fidelities. The qubits on the Ankaa-2 chip are arranged in a square lattice (Figure 1) so that each qubit is designed to have four nearest neighbors allowing for a more efficient mapping of applications to the device layout. More information and up-to-date characterization data can be found on the Ankaa-2 device details page in the Amazon Braket Console.

Figure 1: A Rigetti quantum computer (L) and the 84-qubit Ankaa-2 lattice (R).

Variational Quantum Workloads

Quantum workloads are essentially hybrid in nature and involve running a series of quantum circuits on a quantum processing unit with classical subroutines. Due to noise found in today’s quantum processors, improving the runtime of these iterative operations can be done by reducing the overhead associated with time intensive steps such as queue wait times and compilation.

At launch, Ankaa-2 is fully supported by our Braket Hybrid Jobs feature, offering you a quantum-classical runtime environment with priority access to the device during the entire execution of the customer algorithm. Ankaa-2 offers built-in support for parametric compilation, whereby Braket automatically compiles and caches pre-compiled circuits on behalf of customers. Those compiled artifacts are then reused at run time, which can boost performance by removing the overhead associated with repeated compilation steps. Customers interested in exploring the Braket Hybrid Jobs feature can learn more by checking out our hybrid quantum algorithm example notebooks.

Running Your First Circuit on Ankaa-2

Customers like using Braket for it’s consistent, easy-to-use programming interface to access quantum hardware. To run programs on Ankaa-2, all you need to do is specify the device name before running your circuit, as shown in the python code snippet below:

device = AwsDevice(Devices.Rigetti.Ankaa2)

You can run your first circuit with as little as a few lines of code as shown in the π/2 rotation example below:

# run circuit

circuit = Circuit().rx(0, np.pi/2)

result = device.run(circuit, shots=1000).result()

Experiment with Pulse Control on Rigetti Ankaa-2

Researchers with advanced workloads requiring the use of analog instructions can access the Ankaa-2 device at the pulse-level using Braket Pulse. Here we show how to characterize and construct a single qubit gate directly using pulse access on the Ankaa-2 device.

By taking advantage of the ability to work at the level of pulses, you can customize the analog control signals that are applied to qubits to implement operations on the device. With pulse sequences that have a calibrated length and phase, we can realize single qubit gates. Here, we determine the optimal pulse length to realize a π/2 pulse, an elementary block used to build more complex pulse sequences.

First, let’s import the necessary libraries. When building a pulse sequence, we need the PulseSequence class.

from braket.aws import AwsDevice
from braket.devices import Devices
from braket.pulse import PulseSequence, GaussianWaveform, ErfSquareWaveform
from braket.circuits import FreeParameter
import numpy as np

In this example we plan to execute pulse sequences with different durations and analyze how the final probability of the zero state depends on the duration. The instructions in a pulse sequence are applied to frames. A frame contains a series of pulses which can be sent to or received back from the quantum computer. Before constructing the pulse sequence, let’s start by retrieving the frames. The drive frame is used for applying the pulse, and the readout frame is for measuring the qubit state. In this example, we use the frames of qubit five. For more information about frames, see Roles of frames and ports.

device = AwsDevice(Devices.Rigetti.Ankaa2)
drive_frame = device.frames["Transmon_5_charge_tx"]
readout_frame = device.frames["Transmon_5_readout_rx"]

The pulse sequence applies a waveform to the drive frame followed by a capture instruction on the readout frame. To find the supported pulse instructions and waveforms, you can view the pulse capability in the device properties and the Braket Developer Guide.

waveform = ErfSquareWaveform(
    FreeParameter("length")+20e-9,
    FreeParameter("length"), 
    1.5e-9, 
    amplitude=0.25
)

pulse_sequence = ( 
    PulseSequence()
    .play(drive_frame, waveform)
    .capture_v0(readout_frame)
)

The free parameter defined in the Erf Square waveform allows us to instantiate multiple pulse sequences, each with a different pulse length, from a single parametric pulse.

start_length=12e-9
end_length=2e-7
lengths = np.arange(start_length, end_length, 12e-9)

N_shots = 100

pulse_sequences = [pulse_sequence(length=length) for length in lengths]

With the pulse sequences defined, let’s run them on the Rigetti Ankaa-2 device:

batch = device.run_batch(pulse_sequences, shots=N_shots)
population_of_zero_state = [
    result.measurement_counts['0']/N_shots for result in batch.results()
]

The population of the zero state, shown in Figure 2 below, exhibits the expected Rabi oscillation. From this data, we can extract the frequency of oscillation and fine tune the length of the pulse to implement a particular 1-qubit gate. For example, in Figure 2, the period, which corresponds to a 2π pulse, is about 118 ns; therefore, a π/2 rotation gate will correspond to a pulse sequence with a length of 29.5 ns.

Figure 2: The population of the zero state exhibiting a Rabi oscillation for a given qubit on the Rigetti Ankaa-2 device.

Get Started Today

Ankaa-2 on Braket can execute quantum circuits throughout the day, meaning you can run quantum tasks and hybrid jobs at your convenience. To get started, visit the Amazon Braket console to view the device topology, get up-to-date calibration information about single and two-qubit gate fidelities, native gate support, and to view readout fidelities. If you’re looking for more examples or algorithms, visit our GitHub repository for additional getting started notebooks.


Source: Zia Mohammad and Tim Chen, AWS

Subscribe to HPCwire's Weekly Update!

Be the most informed person in the room! Stay ahead of the tech trends with industry updates delivered to you every week!

Microsoft, Quantinuum Use Hybrid Workflow to Simulate Catalyst

September 13, 2024

Microsoft and Quantinuum reported the ability to create 12 logical qubits on Quantinuum's H2 trapped ion system this week and also reported using two logical qubits on an H1 system to simulate an iron catalyst's low ener Read more…

Diversity Hiring Maximizes Everyone’s Success in STEM and Beyond

September 12, 2024

Despite overwhelming evidence, some companies remain surprised by this simple revelation: Diverse workforces and leadership teams are good for business. Companies that cultivate diverse hiring practices and maintain a di Read more…

GenAI: It’s Not the GPUs, It’s the Storage

September 12, 2024

A recent news release from Data storage company WEKA and S&P Global Market Intelligence unveiled the findings of their second annual Global Trends in AI report. The global study, conducted by S&P Global Market In Read more…

Argonne’s HPC/AI User Forum Wrap Up

September 11, 2024

As fans of this publication will already know, AI is everywhere. We hear about it in the news, at work, and in our daily lives. It’s such a revolutionary technology that even established events focusing on HPC specific Read more…

Quantum Software Specialist Q-CTRL Inks Deals with IBM, Rigetti, Oxford, and Diraq

September 10, 2024

Q-CTRL, the Australia-based start-up focusing on quantum infrastructure software, today announced that its performance-management software, Fire Opal, will be natively integrated into four of the world's most advanced qu Read more…

Computing-Driven Medicine: Sleeping Better with HPC

September 10, 2024

As a senior undergraduate student at Fisk University in Nashville, Tenn., Ifrah Khurram's calculus professor, Dr. Sanjukta Hota, encouraged her to apply for the Sustainable Research Pathways Program (SRP). SRP was create Read more…

GenAI: It’s Not the GPUs, It’s the Storage

September 12, 2024

A recent news release from Data storage company WEKA and S&P Global Market Intelligence unveiled the findings of their second annual Global Trends in AI rep Read more…

Shutterstock 793611091

Argonne’s HPC/AI User Forum Wrap Up

September 11, 2024

As fans of this publication will already know, AI is everywhere. We hear about it in the news, at work, and in our daily lives. It’s such a revolutionary tech Read more…

Quantum Software Specialist Q-CTRL Inks Deals with IBM, Rigetti, Oxford, and Diraq

September 10, 2024

Q-CTRL, the Australia-based start-up focusing on quantum infrastructure software, today announced that its performance-management software, Fire Opal, will be n Read more…

AWS’s High-performance Computing Unit Has a New Boss

September 10, 2024

Amazon Web Services (AWS) has a new leader to run its high-performance computing GTM operations. Thierry Pellegrino, who is well-known in the HPC community, has Read more…

NSF-Funded Data Fabric Takes Flight

September 5, 2024

The data fabric has emerged as an enterprise data management pattern for companies that struggle to provide large teams of users with access to well-managed, in Read more…

Shutterstock 1024337068

Researchers Benchmark Nvidia’s GH200 Supercomputing Chips

September 4, 2024

Nvidia is putting its GH200 chips in European supercomputers, and researchers are getting their hands on those systems and releasing research papers with perfor Read more…

Shutterstock 1897494979

What’s New with Chapel? Nine Questions for the Development Team

September 4, 2024

HPC news headlines often highlight the latest hardware speeds and feeds. While advances on the hardware front are important, improving the ability to write soft Read more…

Critics Slam Government on Compute Speeds in Regulations

September 3, 2024

Critics are accusing the U.S. and state governments of overreaching by including limits on compute speeds in regulations and laws, which they claim will limit i Read more…

Everyone Except Nvidia Forms Ultra Accelerator Link (UALink) Consortium

May 30, 2024

Consider the GPU. An island of SIMD greatness that makes light work of matrix math. Originally designed to rapidly paint dots on a computer monitor, it was then Read more…

AMD Clears Up Messy GPU Roadmap, Upgrades Chips Annually

June 3, 2024

In the world of AI, there's a desperate search for an alternative to Nvidia's GPUs, and AMD is stepping up to the plate. AMD detailed its updated GPU roadmap, w Read more…

Atos Outlines Plans to Get Acquired, and a Path Forward

May 21, 2024

Atos – via its subsidiary Eviden – is the second major supercomputer maker outside of HPE, while others have largely dropped out. The lack of integrators and Atos' financial turmoil have the HPC market worried. If Atos goes under, HPE will be the only major option for building large-scale systems. Read more…

Nvidia Shipped 3.76 Million Data-center GPUs in 2023, According to Study

June 10, 2024

Nvidia had an explosive 2023 in data-center GPU shipments, which totaled roughly 3.76 million units, according to a study conducted by semiconductor analyst fir Read more…

Shutterstock_1687123447

Nvidia Economics: Make $5-$7 for Every $1 Spent on GPUs

June 30, 2024

Nvidia is saying that companies could make $5 to $7 for every $1 invested in GPUs over a four-year period. Customers are investing billions in new Nvidia hardwa Read more…

Comparing NVIDIA A100 and NVIDIA L40S: Which GPU is Ideal for AI and Graphics-Intensive Workloads?

October 30, 2023

With long lead times for the NVIDIA H100 and A100 GPUs, many organizations are looking at the new NVIDIA L40S GPU, which it’s a new GPU optimized for AI and g Read more…

Shutterstock 1024337068

Researchers Benchmark Nvidia’s GH200 Supercomputing Chips

September 4, 2024

Nvidia is putting its GH200 chips in European supercomputers, and researchers are getting their hands on those systems and releasing research papers with perfor Read more…

Google Announces Sixth-generation AI Chip, a TPU Called Trillium

May 17, 2024

On Tuesday May 14th, Google announced its sixth-generation TPU (tensor processing unit) called Trillium.  The chip, essentially a TPU v6, is the company's l Read more…

Leading Solution Providers

Contributors

IonQ Plots Path to Commercial (Quantum) Advantage

July 2, 2024

IonQ, the trapped ion quantum computing specialist, delivered a progress report last week firming up 2024/25 product goals and reviewing its technology roadmap. Read more…

Intel’s Next-gen Falcon Shores Coming Out in Late 2025 

April 30, 2024

It's a long wait for customers hanging on for Intel's next-generation GPU, Falcon Shores, which will be released in late 2025.  "Then we have a rich, a very Read more…

xAI Colossus: The Elon Project

September 5, 2024

Elon Musk's xAI cluster, named Colossus (possibly after the 1970 movie about a massive computer that does not end well), has been brought online. Musk recently Read more…

Department of Justice Begins Antitrust Probe into Nvidia

August 9, 2024

After months of skyrocketing stock prices and unhinged optimism, Nvidia has run into a few snags – a  design flaw in one of its new chips and an antitrust pr Read more…

MLPerf Training 4.0 – Nvidia Still King; Power and LLM Fine Tuning Added

June 12, 2024

There are really two stories packaged in the most recent MLPerf  Training 4.0 results, released today. The first, of course, is the results. Nvidia (currently Read more…

Nvidia H100: Are 550,000 GPUs Enough for This Year?

August 17, 2023

The GPU Squeeze continues to place a premium on Nvidia H100 GPUs. In a recent Financial Times article, Nvidia reports that it expects to ship 550,000 of its lat Read more…

Spelunking the HPC and AI GPU Software Stacks

June 21, 2024

As AI continues to reach into every domain of life, the question remains as to what kind of software these tools will run on. The choice in software stacks – Read more…

Shutterstock 1886124835

Researchers Say Memory Bandwidth and NVLink Speeds in Hopper Not So Simple

July 15, 2024

Researchers measured the real-world bandwidth of Nvidia's Grace Hopper superchip, with the chip-to-chip interconnect results falling well short of theoretical c Read more…

  • arrow
  • Click Here for More Headlines
  • arrow
HPCwire