Quantum Supremacy in 2026: Where Are We Really?

We've had hands-on access to two of the world's most advanced quantum computers: IBM's ibm_fez (156 qubits) and Origin Quantum's WK_C180 (180 qubits). We used them to generate art for the Quantum Genesis NFT collection — running real quantum circuits, collecting real measurement data, and turning quantum noise into abstract art.

That experience gave us a perspective on the state of quantum computing that most blog posts and press releases don't provide. This is a reality check.

What "Quantum Supremacy" Actually Means

Quantum supremacy (or "quantum advantage") is a specific technical claim: a quantum computer has performed a computation that no classical computer can perform in a reasonable time. The key word is performed — not "could theoretically perform" but actually did it, with verifiable results.

The term was coined by John Preskill in 2012. It doesn't mean quantum computers are "better" than classical computers at everything. It means there exists at least one task where they're faster. The task doesn't have to be useful — it just has to be hard for classical computers.

This distinction matters enormously. Quantum supremacy has been demonstrated for artificial benchmarks. Nobody has demonstrated quantum advantage for a practical problem that anyone outside a physics lab cares about.

Google's Sycamore Claim

In October 2019, Google published a paper in Nature claiming quantum supremacy with their 53-qubit Sycamore processor. The task: sampling from random quantum circuits. Google claimed Sycamore completed the task in 200 seconds while the world's most powerful supercomputer would need 10,000 years.

IBM immediately pushed back, arguing that with clever classical algorithms and enough disk space, their Summit supercomputer could do it in 2.5 days — not 10,000 years. The debate continued for years, with classical simulation techniques improving dramatically.

In 2024, Google raised the bar significantly with their Willow processor (105 qubits). They performed a random circuit sampling task that they estimated would take 10^25 years classically — a number so large it exceeds the age of the universe. More importantly, Willow demonstrated that increasing the number of qubits reduced the logical error rate (via surface codes), crossing a critical threshold for quantum error correction.

The honest summary: Quantum supremacy has been demonstrated for sampling tasks that have no known practical application. The significance is in proving that quantum mechanics provides a computational resource that classical physics cannot efficiently simulate. That's foundational science, not a product.

IBM's Roadmap: Eagle to Heron to Starling

IBM has been the most transparent about their quantum hardware roadmap:

ProcessorQubitsYearKey Achievement
Eagle1272021First processor over 100 qubits
Osprey43320223x qubit count increase
Condor1,1212023First processor over 1,000 qubits
Heron133-1562024Focus on quality over quantity
StarlingTBD2025-2026Error-corrected logical qubits

Notice the pivot at Heron. After reaching 1,121 qubits with Condor, IBM shifted strategy. The Heron processors (ibm_fez, ibm_torino, ibm_marrakesh, ibm_kingston) have fewer qubits but significantly better gate fidelities and connectivity. IBM realized that 1,000 noisy qubits are less useful than 156 cleaner qubits.

This is the direction the entire industry is moving: quality over quantity. A qubit that errors 1% of the time is dramatically more useful than one that errors 5% of the time, because error correction overhead scales exponentially with the physical error rate.

Quantum Genesis NFT #19 - the first NFT generated on IBM Quantum ibm_fez

Quantum Genesis #19 — the first artwork generated on IBM's ibm_fez processor (156 qubits, Heron architecture).

Origin Quantum's WK_C180: 180 Qubits From China

Origin Quantum (based in Hefei, China) receives far less press coverage in the West, but they're building serious hardware. Their WK_C180 — which we believe is related to the Wukong ("Monkey King") processor family — offers 180 superconducting qubits accessible via their cloud platform.

We accessed WK_C180 through their pyqpanda3 SDK, which connects to their QCloud service. Our experience:

  • Access: Free tier available with an API key. Registration is straightforward.
  • SDK: pyqpanda3 is Python-native and reasonably well-documented (in Chinese, with some English).
  • Queue times: Varied wildly — sometimes seconds, sometimes hours. Less predictable than IBM.
  • Results: The measurement distributions had different noise characteristics than IBM. More entropy in some circuit configurations, which made for more visually complex art.

Origin Quantum also offers the PQPUMESH8 chip and several simulators (full_amplitude, partial_amplitude, single_amplitude). The real chips are the interesting ones — simulators give you the same distributions as classical random number generators.

NFTs #1-18 in Quantum Genesis were generated on WK_C180. You can see a different aesthetic quality in those early pieces compared to the IBM-generated #19-100.

Quantum Genesis NFT #5 - generated on Origin Quantum WK_C180 with 180 qubits

Quantum Genesis #5 — Origin Quantum WK_C180 (180 qubits). The noise signature differs visibly from IBM's processors.

What You Can Actually Run Today

Here's what current quantum hardware can and cannot do:

Things That Work

  • Random circuit sampling: The supremacy benchmark. Quantum computers are genuinely faster at this, though the task has no direct practical application.
  • True random number generation: Quantum measurements are fundamentally random. This is what we used for Quantum Genesis. It's commercially viable today.
  • Small quantum chemistry simulations: Molecules with up to ~20-30 orbitals can be simulated using variational methods (VQE). The results sometimes match or beat classical methods — but only for systems small enough that classical methods also work.
  • QAOA for small optimization problems: The Quantum Approximate Optimization Algorithm can find approximate solutions to combinatorial problems. For small instances (<30 variables), it works. For larger instances, classical solvers still win.
  • Educational and research circuits: Understanding quantum mechanics, testing error correction schemes, calibrating hardware — the primary use case for most access today.

Things That Don't Work Yet

  • Breaking encryption: Shor's algorithm needs thousands of error-corrected logical qubits. We have zero error-corrected logical qubits available for general use.
  • Drug discovery at scale: The molecules that matter (proteins, complex catalysts) require far more qubits and gate fidelity than available.
  • Machine learning speedup: Despite many papers, no quantum ML algorithm has demonstrated practical advantage on real hardware.
  • Financial optimization: Same story — theoretical speedups exist but hardware isn't there.

Our Experience: Running Real Circuits on Both Platforms

For Quantum Genesis, we ran identical circuit structures on both IBM and Origin Quantum hardware. Here's what we observed:

Circuit Design

Our circuits used Hadamard gates (to create superposition) and CNOT gates (to create entanglement) on 4-6 qubits, measured with 4096 shots per NFT:

# Simplified circuit for NFT seed generation
# 1. Put all qubits in superposition (H gates)
# 2. Create entanglement (CNOT ladder)
# 3. Add rotation gates parameterized by token ID
# 4. Measure all qubits, 4096 shots
# 5. Hash the measurement distribution → seed

IBM (ibm_fez, ibm_torino)

  • Queue time: 1-5 minutes (generally predictable)
  • Execution time: ~19 seconds per circuit on ibm_fez
  • Results: Consistent shot-to-shot. Noise signature was stable within a calibration cycle (~24h)
  • SDK (Qiskit): Mature, well-documented, excellent tooling
  • Transpilation: Required — IBM chips have limited connectivity, so logical circuits must be mapped to physical qubit topology

Origin Quantum (WK_C180)

  • Queue time: Highly variable (seconds to hours)
  • Execution time: Comparable when it ran
  • Results: Different noise profile — higher entropy in some configurations, which we attributed to different decoherence characteristics
  • SDK (pyqpanda3): Functional but less mature than Qiskit. Documentation primarily in Chinese.
  • Gotcha: The measure() syntax requires explicit classical bit specification — measure([0,1], [0,1]) — which tripped us up initially

The Art Difference

NFTs #1-18 (Origin Quantum) and #19-100 (IBM) have subtly different aesthetic qualities because the noise profiles differ. Origin Quantum's measurements produced seeds with more entropy variation, leading to more varied color palettes and shape distributions. IBM's were more consistent but still uniquely random.

Hype vs Reality

Let's be direct about where things stand in 2026:

The Hype

  • "Quantum computers will break all encryption" — Not for at least a decade, likely longer.
  • "Quantum supremacy means quantum computers are faster" — Only for artificial benchmarks.
  • "1000+ qubits means we're almost there" — Qubit count is misleading without quality metrics.
  • "Quantum AI will revolutionize machine learning" — No evidence of this on real hardware.

The Reality

  • We are in the NISQ (Noisy Intermediate-Scale Quantum) era and will be for several more years.
  • Error rates are improving but are still orders of magnitude too high for fault-tolerant computation.
  • The most honest near-term applications are: quantum random number generation, small chemistry simulations, and fundamental research.
  • IBM's pivot from Condor (1,121 qubits) to Heron (156 qubits) tells the real story — quality matters more than quantity.
  • Both IBM and Origin Quantum provide genuine cloud access to real quantum hardware. You can run circuits today. The barrier to entry is knowledge, not access.

What Excites Us

Despite the reality check, we're genuinely optimistic about quantum computing. Here's why:

  1. Error correction is working. Google's Willow crossed the threshold where adding qubits reduces errors. This is the foundation everything else builds on.
  2. The hardware is real and accessible. We ran circuits on processors in New York (IBM) and Hefei (Origin Quantum) from a laptop in Brazil. The democratization is remarkable.
  3. The talent pipeline is growing. Five years ago, quantum computing was a niche academic field. Now there are SDKs, cloud platforms, courses, and communities.
  4. Quantum randomness has immediate value. Our NFT project proves you can build real products with quantum hardware today — you just have to be creative about what you build.

The Quantum Genesis collection exists as a timestamp of this era. Each NFT is a permanent record of what quantum processors could do in early 2026 — noise, limitations, and all. When fault-tolerant quantum computers arrive years from now, these 100 artworks will be artifacts of the pioneer era.

@media (prefers-color-scheme: dark) { background:#1a1a2e; border-color:#2d2d4a; box-shadow:0 1px 3px rgba(0,0,0,0.3); }
Marcelo Santos
Marcelo Santos
Engenheiro Quântico • Artista Generativo • Founder Quantum Art Lab

Desenvolvo sistemas que usam hardware quântico real (IBM Quantum, Origin Quantum) para gerar arte e NFTs com proveniência verificável on-chain. Escrevo sobre computação quântica aplicada, criptografia, Web3 e arte generativa — tudo com código que roda em processadores quânticos de verdade.

Comentários

Postagens mais visitadas deste blog

How to List NFTs on OpenSea: The Complete 2026 Guide

Polygon vs Ethereum for NFTs: Why We Chose Polygon (and Saved $490)

Quantum Error Correction Explained: Why Your Qubits Need Backup