Origin Quantum — Wukong (本源量子 · 悟空)
◐ 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.Origin Quantum (Hefei) operates the Origin Wukong superconducting quantum computers, China's flagship home-grown line, available to the world over the public cloud. The latest model, Wukong-180, brings 180 compute qubits on a single chip.
Origin Wukong at a glance
| Property | Value |
|---|---|
| Latest processor | Wukong-180 — 180 compute qubits, single chip (4th generation, online May 2026) |
| Previous flagship | Origin Wukong — 72 compute + 126 coupler qubits (3rd generation, Jan 2024) |
| Cloud reach | As of 2026, per Origin Quantum public materials: 50M+ visits from 160+ countries/regions and 900k+ quantum tasks completed; figures per official announcements |
| Software stack | Origin's quantum operating system & SDK |
The Wukong name honors Sun Wukong and his legendary "72 transformations" — a nod to the original 72 functional qubits.
Vendor SDK workflow — submitting to Wukong
Local validation runs; Origin submission is a planned adapter
The block below validates locally on the CPU simulator. The Origin Wukong submission lines are a
planned adapter workflow, commented out — they are not wired into the open
reference implementation.
import qalgora
# Local validation runs on the CPU statevector simulator:
qalgora.set_target("qpp-cpu")
counts = qalgora.sample(bell, shots_count=4000)
# Planned: submit the same gate-model kernel to Origin Wukong via the Origin
# SDK / pyQPanda adapter (async submit + poll). Requires the QALGORA_ORIGIN_TOKEN
# credential, gate-set transpilation, coupling-map routing, and a device queue.
# qalgora.set_target("origin", machine="wukong")
# job = qalgora.sample_async(bell, shots_count=4000)
# print(job.get())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.Notable features
- Single-chip scaling — Wukong-180 reaches 180 compute qubits on one chip, up from the 72-qubit Wukong.
- Public cloud at scale — as of 2026, per Origin Quantum public materials, 50M+ global visits and 900k+ completed jobs, with a full SDK and quantum OS; figures per official announcements.
- Post-quantum security — quantum-resistant encryption protects job data in transit.
Gate-model — still needs adaptation
For compatible gate-model circuits, the qalgora-Q adapter can export to the Origin SDK / pyQPanda
workflow; before actually running, you still need target gate-set transpilation, coupling-map
routing, shots configuration, SDK credentials, and a device-queue check.
References
- Origin Quantum (本源量子), "Origin Wukong-180" — 4th-generation 180-qubit single-chip superconducting quantum computer, online May 2026. originqc.com.cn
- The Quantum Insider, "Origin Quantum launches 72-qubit Origin Wukong" (2024). thequantuminsider.com
本源量子 · 悟空(Origin Quantum)
◐ 设计接口
本页描述的是 qalgora-Q 的接口设计、架构设计或适配工作流。相关代码用于说明预期用法,当前参考实现不保证可以直接运行。本源量子(合肥)运营着「本源悟空」系列超导量子计算机——中国自主研制的旗舰产线,并通过公有云向全球开放。最新机型「悟空-180」在单芯片上集成 180 个计算比特。
本源悟空概览
| 属性 | 数值 |
|---|---|
| 最新机型 | 悟空-180 —— 单芯片 180 个计算比特(第四代,2026 年 5 月上线) |
| 上一代旗舰 | 本源悟空 —— 72 个计算 + 126 个耦合比特(第三代,2024 年 1 月) |
| 云端覆盖 | 截至 2026 年,据本源量子公开资料:来自 160 多个国家/地区超 5000 万次访问、累计完成超 90 万个量子计算任务;具体以官方公告为准 |
| 软件栈 | 本源自研量子操作系统与 SDK |
「悟空」之名取自孙悟空的「七十二变」,呼应最初的 72 个功能量子比特。
厂商 SDK 工作流 — 提交到悟空
本地验证可运行;提交到本源为规划中的适配器
下方代码在本地 CPU 模拟器上验证;提交到本源悟空的几行属于规划中的适配器工作流,已注释——它们尚未接入开放参考实现。import qalgora
# 本地验证在 CPU 态矢量模拟器上运行:
qalgora.set_target("qpp-cpu")
counts = qalgora.sample(bell, shots_count=4000)
# 规划中:通过本源 SDK / pyQPanda 适配器把同一门模型内核提交到本源悟空
# (异步提交 + 轮询)。需要 QALGORA_ORIGIN_TOKEN 凭据、目标门集转译、
# 耦合图布线,以及设备队列。
# qalgora.set_target("origin", machine="wukong")
# job = qalgora.sample_async(bell, shots_count=4000)
# print(job.get())参考实现仅本地运行 · 非真机
此示例虽指向远程云端/QPU,但开放参考实现不会真正提交到真机 —— 它会给出告警并回退到本地 CPU 态矢量模拟器,返回模拟结果,不会真正提交到天衍等真机。真正提交真机需使用对应厂商的 SDK 与凭证。亮点特性
- 单芯片扩展 —— 悟空-180 在单芯片上做到 180 个计算比特,较 72 比特的悟空大幅提升。
- 规模化公有云 —— 截至 2026 年,据本源量子公开资料,全球超 5000 万次访问、超 90 万个已完成任务,配套完整 SDK 与量子操作系统;具体以官方公告为准。
- 抗量子安全 —— 用抗量子加密保护传输中的任务数据。
门模型 · 仍需适配
对兼容的门模型线路,qalgora-Q 适配器可导出到本源 SDK / pyQPanda 工作流;实际运行前仍需目标门集转译、耦合图布线、shots 配置、SDK 凭据和设备队列检查。
参考文献
- Origin Quantum (本源量子), "Origin Wukong-180" — 4th-generation 180-qubit single-chip superconducting quantum computer, online May 2026. originqc.com.cn
- The Quantum Insider, "Origin Quantum launches 72-qubit Origin Wukong" (2024). thequantuminsider.com