Rust Engine Performance

PyO3 Rust extension with Rayon parallelisation. Benchmarked against pure Qiskit on identical workloads.

OperationQiskit (Python)Rust EngineSpeedup
Hamiltonian construction (8q)2,701 ms0.5 ms5,401×
Knm matrix utilities180 ms0.4 ms450×
Pauli string operations95 ms0.12 ms792×
DLA dimension computation340 ms1.2 ms283×
OTOC evaluation520 ms2.1 ms248×
Krylov complexity410 ms1.8 ms228×
Lindblad operators290 ms1.5 ms193×
Kuramoto order parameter45 ms0.3 ms150×

22 Rust functions exported via PyO3. ndarray + num-complex + rayon. Edition 2021.

Hardware Validation Summary

ExperimentQubitsDepthHardwareExactError
VQE ground state412 CZ−6.2998−6.30300.05%
Kuramoto XY (1 rep)485R=0.743R=0.8027.3%
Qubit scaling6147R=0.482R=0.5329.3%
UPDE-16 snapshot16770R=0.332R=0.61546%

IBM ibm_fez (Heron r2, 156 qubits). February 2026. 33 jobs, 176,000+ shots.

Quantum Certification

Bell Inequality (CHSH)
S = 2.165 — classical limit is 2.0. Violation by >8σ. Certifies genuine quantum entanglement in synchronised oscillator states.
QKD Bit Error Rate
QBER = 5.5% — below the BB84 security threshold of 11%. Quantum-secure key distribution validated on real hardware.
State Fidelity
94.6% preparation fidelity. 20/20 experiments successful. Coherence wall identified at depth 250–400.

Coherence Limitations

Depth 250–400: The Heron r2 Coherence Wall

Beyond ~250 CZ gates, decoherence dominates. The 16-qubit UPDE experiment (depth 770) shows 46% error — consistent with known T1/T2 limits. Error mitigation (ZNE, PEC, DD) reduces but does not eliminate this. Future fault-tolerant hardware will lift this ceiling.

Classical vs Quantum Scaling

Crossover Estimation

Classical Kuramoto simulation scales as O(N²) per timestep. Quantum XY evolution on ideal hardware scales as O(N) circuit depth with O(log N) measurement overhead. The quantum advantage crossover is estimated at N ≈ 200–500 oscillators on fault-tolerant hardware with logical error rates < 10−6.

MPS Baseline

Matrix Product State simulation provides efficient classical baseline for low-entanglement regimes. Included in benchmarks subpackage for honest comparison. MPS wins for weakly-coupled systems; quantum hardware wins for strongly-entangled synchronisation.