The pauli-prop package provides a Rust-accelerated Python interface for performing Pauli propagation.
Pauli propagation is a framework for approximating the evolution of operators in the Pauli basis under the action of other operators, such as quantum circuit gates and noise channels [1-5]. This approach can be effective when the operators involved are expected to remain sparse in the Pauli basis.
The subroutines in this package may be used to implement error mitigation techniques such as lightcone shading [6] and propagated noise absorption [7], operator backpropagation [8] for circuit depth reduction, and classical simulation of expectation values [1-5].
All documentation is available at https://quantum.cloud.ibm.com/docs/addons/pauli-prop.
We encourage installing this package via pip, when possible:
pip install 'pauli-prop'For more installation information refer to these installation instructions.
A simple guide to help you get started quickly with this package is available in the quickstart guide.
Pauli propagation can be used as a lower-level engine to implement a variety of techniques. Some examples of where this has been used are:
- Lightcone shading to reduce the sampling overhead of probabilistic error cancellation (PEC) for mitigating expectation values in a 1- and 2D transverse field Ising model [6]
- Absorbing noise model information into a target observable to mitigate expectation values in a 2D transverse field Ising model [7]
- Trimming trailing gates to produce lower-depth Trotter circuits for the time-evolution of a 2D spin model [8]
- Rust-accelerated Python interface
- Support for noisy simulations [tutorial 3]]
- Ability to truncate operator terms during evolution based on an absolute coefficient tolerance, a fixed number of terms in the evolving operator, or a combination of both.
- Ability to perform Pauli propagation in both the Schrödinger and Heisenberg frameworks.
- Novel technique for approximating the conjugation of two Pauli-sum operators. This heuristic implementation greedily generates contributions to the product expected to be most significant. See section B of [7] for more information.
- Current implementation is single-threaded
Both the memory and time cost for Pauli propagation routines generally scale with the size to which the evolved operator is allowed to grow.
propagate_through_rotation_gates: As the Pauli operator is propagated in the Pauli basis under
the action of a sequence of
propagate_through_operator: Conjugates one operator in the Pauli basis by another by greedily
accumulating terms in the sum,
The source code is available on GitHub.
The developer guide is located at CONTRIBUTING.md in the root of this project's repository. By participating, you are expected to uphold Qiskit's code of conduct.
If you use this package in your research, use the CITATION.bib file in this project’s repository to cite the appropriate reference(s).
We follow semantic versioning. We may occasionally make breaking changes in order to improve the user experience. When possible, we will keep old interfaces and mark them as deprecated, as long as they can co-exist with the new ones. Each substantial improvement, breaking change, or deprecation will be documented in the release notes.
[1] Tomislav Begušić, Johnnie Gray, Garnet Kin-Lic Chan, Fast and converged classical simulations of evidence for the utility of quantum computing before fault tolerance, arXiv:2308.05077 [quant-ph].
[2] Nicolas Loizeau, et al., Quantum many-body simulations with PauliStrings.jl, arXiv:2410.09654 [quant-ph].
[3] Manuel S. Rudolph, et al., Pauli Propagation: A Computational Framework for Simulating Quantum Systems, arXiv:2505.21606 [quant-ph].
[4] Hrant Gharibyan, et al., A Practical Guide to using Pauli Path Simulators for Utility-Scale Quantum Experiments, arXiv:2507.10771 [quant-ph].
[5] Lukas Broers, et al., Scalable Simulation of Quantum Many-Body Dynamics with Or-Represented Quantum Algebra, arXiv:2506.13241 [quant-ph].
[6] Andrew Eddins, Minh C. Tran, Patrick Rall, Lightcone shading for classically accelerated quantum error mitigation, arXiv:2409.04401 [quant-ph].
[7] Andrew Eddins, et al., Computing noise-canceling observables via Pauli propagation, arXiv:2606.20441 [quant-ph].
[8] Bryce Fuller, et al., Improved Quantum Computation using Operator Backpropagation, arXiv:2502.01897 [quant-ph].