qalgora-Q Docs Hub量子文档 ✦ Ask AI✦ 问问文档

Google Quantum AI

◐ Design-level API
This page documents qalgora-Q API design, architecture, or adaptation workflows. Code examples illustrate intended usage and are not guaranteed to run in the current reference implementation.

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

PropertyValue
Qubits105 (superconducting transmon)
Fidelity99.97% single-qubit, 99.88% two-qubit, 99.5% readout
MilestoneBelow-threshold error correction (Nature 2024); first verifiable quantum advantage (2025)
SoftwareOpen-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

AspectGoogle hardware
Native 1-qubitPhasedXZ (arbitrary single-qubit via X/Z rotations)
Native 2-qubit√iSWAP / CZ family, calibrated per coupler
Layout2D 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)
Reference build runs locally — not real hardware
This example targets a remote cloud/QPU, but the open reference build does not submit to a real machine — it warns and falls back to the local CPU statevector simulator, returning simulated results. Submitting to an actual device (e.g. 天衍/TianYan, IBM, IonQ, Origin) requires the vendor’s own SDK and credentials.

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 in
Specification API — not in the open reference build yet
This example shows a qalgora-Q specification API (or a third-party library) that the open reference build does not bundle today. It documents the intended interface; to run code now, use the reference build’s supported core API.

See 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.

Error correction
Willow's headline result is that adding more physical qubits reduces the logical error rate — the long-sought below-threshold regime for fault tolerance, published in Nature (2024).

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

◐ 设计接口
本页描述的是 qalgora-Q 的接口设计、架构设计或适配工作流。相关代码用于说明预期用法,当前参考实现不保证可以直接运行。

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)
参考实现仅本地运行 · 非真机
此示例虽指向远程云端/QPU,但开放参考实现不会真正提交到真机 —— 它会给出告警并回退到本地 CPU 态矢量模拟器,返回模拟结果,不会真正提交到天衍等真机。真正提交真机需使用对应厂商的 SDK 与凭证。

与 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
规范接口 · 参考实现暂未包含
此示例展示的是 qalgora-Q 规范中的接口(或第三方库),开放参考实现目前尚未内置,仅用于说明预期用法;如需立即运行,请使用参考实现已支持的核心 API。

详见 Cirq 互操作qsim 互操作

路线图与第二条硬件路线

Google 公布的路径分六个里程碑:超越经典(2019)→ 纠错量子比特(低于阈值,2024)→ 长寿命逻辑比特(当前重点)→ 逻辑门 → 工程化扩展 → 一台约 100 万物理比特、能产出数千个逻辑比特的大型机。实用化纠错量子计算机的目标定在本十年末

有报道称,Google 在超导之外又开了第二条硬件路线——中性原子(由 JILA 的 Adam Kaufman 领衔的博尔德新团队负责):超导跑快速、深层的电路,中性原子主打任意互联和量子比特规模。此为报道内容,请以 Google 官方公告为准。

纠错
Willow 最关键的成果是:物理量子比特越多,逻辑错误率反而越——这正是业界长期追求的阈值以下容错区间,相关结果已发表于 Nature(2024)。

参考文献

  • 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