
Quantinuum priced its IPO on Nasdaq today at $53–$55 per share, raising up to $1.46 billion at a $14.3 billion valuation — the first full-stack quantum computing company to go public through a traditional IPO. Every financial outlet is running the same piece: $14 billion, trapped ions, Honeywell spinoff. That is not this article. The question developers should be asking is simpler: what can I actually build, and when do I need to start?
Quantinuum emerged from the 2021 merger of Honeywell Quantum Solutions and Cambridge Quantum. It develops the full stack — trapped-ion hardware, the Guppy programming language, the TKET compiler, the Helios machine, and the Nexus cloud platform. The IPO raises $1.46 billion to fund the next two hardware generations. That money has a schedule.
The Tools Are Already Free
Before the roadmap: here is what is available right now at no cost. Guppy is an open-source quantum programming language embedded in Python. TKET is an open-source hardware-agnostic quantum compiler. Both install from PyPI.
pip install guppylang
pip install pytket
Guppy is not a circuit simulation library. It is a compiled language that looks like Python. You write hybrid quantum-classical programs using familiar constructs — if-else, for loops, typed function signatures — and the compiler enforces the physics: no-cloning violations and qubit memory leaks are caught at compile time. Here is a Bell state in Guppy:
from guppylang import guppy, qubit
@guppy
def bell_state(q1: qubit, q2: qubit) -> tuple[qubit, qubit]:
q1 = H(q1)
q1, q2 = cx(q1, q2)
return q1, q2
That compiles to bytecode targeting Helios hardware. It is not a CPU simulation of quantum behavior. The distinction matters because most quantum SDKs still treat programming as gate assembly. Guppy treats it as software engineering.
JPMorgan Chase is already using Guppy in production research workflows — the firm received the Guppy Adopter Award at Q-Net Connect 2026. Amgen, BMW, and SoftBank are paying Quantinuum customers. This is not a research toy.
Helios: The Hardware Behind the Access
Quantinuum’s current machine, Helios, launched in November 2025 with 98 physical qubits and 48 logical error-corrected qubits — a 2:1 physical-to-logical ratio that represents a genuine engineering milestone. Single-qubit gate fidelity sits at 99.9975%. Two-qubit fidelity is 99.921% across all qubit pairs — not a cherry-picked best-case number. For context, IBM’s best two-qubit fidelity is around 99.5%, and not across all pairs.
Helios uses all-to-all qubit connectivity via the QCCD architecture, meaning every qubit can interact with every other qubit. That is a significant structural advantage over superconducting designs where connectivity is constrained by physical topology.
Cloud access to Helios is available through Quantinuum Nexus, which provides a pre-configured JupyterHub environment, the H-Series emulator for local development, and multi-backend workflow management. Signing up is free.
Why the IPO Matters for the Roadmap
The $1.46 billion raised funds two specific hardware generations. Sol, scheduled for 2027, scales Helios to 192 physical qubits. Apollo, targeted for 2029, pushes into thousands of qubits with full fault tolerance — the point where quantum error correction stops being a research problem and becomes a platform guarantee.
Guppy is explicitly designed for the fault-tolerant paradigm. Unlike NISQ-era frameworks that work around noise with heuristics, Guppy compiles programs that assume reliable logical qubits. Code written in Guppy today will be valid when Apollo ships. Code written in NISQ-optimized gate assemblies may not be.
The IPO signals something more consequential than the valuation: quantum computing has crossed the line from pre-commercial research to infrastructure that enterprises pay for. Honeywell built a real business here, then floated it. That changes the risk calculation for developers deciding whether to invest learning time now.
TKET: The Bridge for Developers Already in the Ecosystem
If you already have quantum circuits in Qiskit, Cirq, or PennyLane, TKET provides a path to Helios without rewriting your code. TKET is hardware-agnostic, handles circuit optimization, and provides backends for IBM, Google, IonQ, AWS Braket, and Quantinuum H-Series from the same Python interface. It is also available as a Rust crate for lower-level integration.
The workflow: write in your existing framework, optimize with TKET, route to whichever backend fits your fidelity and budget requirements.
The Practical Take
Most developers will wait until 2027 or 2029 to take quantum seriously. That is a defensible position, but it carries a cost: everyone who starts now will have two to three years of applied experience by the time Apollo ships. The tools are free, the emulator runs locally, and cloud access requires only a signup. There is no expensive hardware commitment standing between you and genuine quantum programming experience.
Install Guppy. Run the examples from the docs. Set up a Nexus account. When Sol ships in 2027 with 192 qubits, you will not be starting from zero.













