LogosQ: A High-Performance and Type-Safe Quantum Computing Library in Rust
Shiwen An, Jiayi Wang, Konstantinos Slavakis
TL;DR
LogosQ tackles the challenge of building reliable, high-performance quantum simulation software by delivering a Rust-based library with compile-time type safety for variational gradient computations, combined with backends optimized for both small and large systems. It introduces direct state-vector gate operations, an FFT-optimized QFT, and an adaptive backend that switches to MPS representations to manage entanglement growth, enabling scalable simulations up to 24–25 qubits. Across molecular hydrogen VQE and XYZ Heisenberg benchmarks, LogosQ demonstrates chemical accuracy, substantial speedups over Python and Julia frameworks, and competitive performance with Q#. The work argues that the combination of static verification, circuit rebuilding for PSR, and tensor-network backends yields stronger correctness guarantees and superior scalability for variational quantum algorithms and many-body simulations.
Abstract
Developing robust and high performance quantum software is challenging due to the dynamic nature of existing Python-based frameworks, which often suffer from runtime errors and scalability bottlenecks. In this work, we present LogosQ, a high performance backend agnostic quantum computing library implemented in Rust that enforces correctness through compile time type safety. Unlike existing tools, LogosQ leverages Rust static analysis to eliminate entire classes of runtime errors, particularly in parameter-shift rule gradient computations for variational algorithms. We introduce novel optimization techniques, including direct state-vector manipulation, adaptive parallel processing, and an FFT optimized Quantum Fourier Transform, which collectively deliver speedups of up to 900 times for state preparation (QFT) and 2 to 5 times for variational workloads over Python frameworks (PennyLane, Qiskit), 6 to 22 times over Julia implementations (Yao), and competitive performance with Q sharp. Beyond performance, we validate numerical stability through variational quantum eigensolver (VQE) experiments on molecular hydrogen and XYZ Heisenberg models, achieving chemical accuracy even in edge cases where other libraries fail. By combining the safety of systems programming with advanced circuit optimization, LogosQ establishes a new standard for reliable and efficient quantum simulation.
