Google Quantum AI
Google's Quantum AI team builds superconducting processors and the open-source Cirq framework. Its Willow chip demonstrated below-threshold error correction and, in 2025, what Google reports as a verifiable quantum advantage with the Quantum Echoes algorithm.
Willow at a glance
| Property | Value |
|---|---|
| Qubits | 105 (superconducting transmon) |
| Fidelity | 99.97% single-qubit, 99.88% two-qubit, 99.5% readout |
| Milestone | Below-threshold error correction (Nature 2024); first verifiable quantum advantage (2025) |
| Software | Open-source Cirq (1.6.x) + qsim simulator |
Quantum Echoes — verifiable advantage (2025)
Google reports that Willow ran the Quantum Echoes algorithm — an out-of-time-order correlator measured with a time-reversal protocol — about 13,000× faster than the best classical method (≈2 hours vs. an estimated 3.2 years per data point on the Frontier supercomputer). Unlike the 2019 random-circuit-sampling result, the outcome is verifiable and repeatable: another comparable machine reproduces it. Published in Nature (Oct 2025). An early proof-of-principle with UC Berkeley applied it to NMR molecular-structure / Hamiltonian learning, the kind of problem that points toward drug discovery and materials science.
Native gates & connectivity
| Aspect | Google hardware |
|---|---|
| Native 1-qubit | PhasedXZ (arbitrary single-qubit via X/Z rotations) |
| Native 2-qubit | √iSWAP / CZ family, calibrated per coupler |
| Layout | 2D grid of transmons (GridQubit), nearest-neighbour coupling |
Targeting Google hardware
Willow is used within Google Quantum AI research and collaborations, not an ordinary open cloud backend — having credentials does not imply on-demand submission. qalgora-Q's Google target is a planned / research interface; the snippet below is illustrative and does not submit on the open reference build.
import qalgora
# Planned / research interface — illustrative, not run by the reference build.
# ghz is a predefined example kernel.
# qalgora.set_target("google", machine="willow")
# counts = qalgora.sample(ghz, 5, shots_count=2000)Interop with Cirq & qsim
Cirq is Google's open-source framework; qsim is its high-performance simulator. qalgora-Q reads and writes Cirq circuits, so teams on Google's stack can move circuits both ways.
# bell is a predefined example kernel
cirq_circuit = qalgora.to_cirq(bell) # hand off to a Cirq / qsim pipeline
kernel = qalgora.from_cirq(cirq_circuit) # bring a Cirq circuit back inSee Cirq interop and qsim interop.
Roadmap & a second hardware track
Google's published path has six milestones: beyond-classical (2019) → error-corrected qubits (below-threshold, 2024) → long-lived logical qubit (current focus) → logical gate → engineering scale-up → a large machine of ~1,000,000 physical qubits giving thousands of logical qubits. A useful, error-corrected quantum computer is targeted for the end of the decade.
Google is reported to have added a second hardware lane — neutral atoms (a new Boulder team under JILA's Adam Kaufman) — alongside superconducting: superconducting for fast, deep circuits; neutral atoms for any-to-any connectivity and qubit count. Treat this as reported; confirm against Google's official announcements.
References
- Google Quantum AI, "Quantum error correction below the surface code threshold," Nature 638, 920–926 (2025). doi:10.1038/s41586-024-08449-y
- Google Quantum AI, "Quantum Echoes" — a verifiable quantum advantage via an out-of-time-order correlator measured with a time-reversal protocol, Nature (Oct 2025). Google reports ~13,000x over the best classical method. blog.google
- Google Quantum AI, "Meet Willow, our state-of-the-art quantum chip" (2024). blog.google
Google Quantum AI
Google Quantum AI 团队研发超导处理器,并开源了 Cirq 框架。其 Willow 芯片把纠错做到了阈值以下;Google 报告称,2025 年 Willow 运行 Quantum Echoes 算法实现了可核实的量子优势。
Willow 一览
| 属性 | 数值 |
|---|---|
| 量子比特数 | 105(超导 transmon) |
| 保真度 | 单比特 99.97%,双比特 99.88%,读出 99.5% |
| 里程碑 | 阈值以下纠错(Nature 2024);首个可核实的量子优势(2025) |
| 软件 | 开源 Cirq(1.6.x)+ qsim 模拟器 |
Quantum Echoes——可核实的量子优势(2025)
Google 报告称,Willow 运行了 Quantum Echoes 算法(一种用时间反演协议测量的非时序关联器 OTOC),比最优经典方法快约 13,000 倍(约 2 小时,而在 Frontier 超算上每个数据点要算约 3.2 年)。与 2019 年的随机电路采样不同,这次的结果可核实、可复现:换一台同级机器也能重现。成果发表于 Nature(2025 年 10 月)。与加州大学伯克利分校合作的早期验证把它用在核磁共振分子结构 / 哈密顿量学习上——这类问题直接关系到药物发现与材料科学。
原生门与连通性
| 方面 | Google 硬件 |
|---|---|
| 原生单量子比特门 | PhasedXZ(通过 X/Z 旋转实现任意单量子比特操作) |
| 原生双量子比特门 | √iSWAP / CZ 族,按耦合器逐一校准 |
| 布局 | transmon 二维网格(GridQubit),最近邻耦合 |
以 Google 硬件为目标后端
Willow 用于 Google Quantum AI 的科研与合作场景,并非普通的开放云端后端——有凭据并不等于可以随时提交。qalgora-Q 的 Google 目标后端属于规划中 / 科研接口;下面的代码仅为示意,开放参考实现不会真正提交。
import qalgora
# 规划中 / 科研接口——示意代码,参考实现不会执行。
# ghz 是预定义的示例内核。
# qalgora.set_target("google", machine="willow")
# counts = qalgora.sample(ghz, 5, shots_count=2000)与 Cirq 和 qsim 互操作
Cirq 是 Google 的开源框架,qsim 是配套的高性能模拟器。qalgora-Q 能读写 Cirq 电路,方便用 Google 技术栈的团队在两边来回搬运电路。
# bell 是预定义的示例内核
cirq_circuit = qalgora.to_cirq(bell) # hand off to a Cirq / qsim pipeline
kernel = qalgora.from_cirq(cirq_circuit) # bring a Cirq circuit back in路线图与第二条硬件路线
Google 公布的路径分六个里程碑:超越经典(2019)→ 纠错量子比特(低于阈值,2024)→ 长寿命逻辑比特(当前重点)→ 逻辑门 → 工程化扩展 → 一台约 100 万物理比特、能产出数千个逻辑比特的大型机。实用化纠错量子计算机的目标定在本十年末。
有报道称,Google 在超导之外又开了第二条硬件路线——中性原子(由 JILA 的 Adam Kaufman 领衔的博尔德新团队负责):超导跑快速、深层的电路,中性原子主打任意互联和量子比特规模。此为报道内容,请以 Google 官方公告为准。
参考文献
- Google Quantum AI, "Quantum error correction below the surface code threshold," Nature 638, 920–926 (2025). doi:10.1038/s41586-024-08449-y
- Google Quantum AI, "Quantum Echoes" — a verifiable quantum advantage via an out-of-time-order correlator measured with a time-reversal protocol, Nature (Oct 2025). Google reports ~13,000x over the best classical method. blog.google
- Google Quantum AI, "Meet Willow, our state-of-the-art quantum chip" (2024). blog.google