Operator backpropagation (OBP)
Operator backpropagation (OBP) is a technique to reduce circuit depth by trimming operations from its end at the cost of more operator measurements. There are a number of ways in which operator backpropagation can be performed, and this package uses a method based on Clifford perturbation theory.
As one propagates an operator further through a circuit, the size of the observable to measure grows exponentially. This results in both a classical and quantum resource overhead. However, for some circuits, the resulting distribution of additional Pauli observables is more concentrated than the worst-case exponential scaling. This implies that some terms in an observable with small coefficients can be truncated to reduce the quantum overhead. The error incurred by doing so can be controlled to find a suitable tradeoff between precision and efficiency.
Installation
You can install the OBP package in one of two ways: via PyPI or building from source. Consider installing these packages in a virtual environment to ensure separation between package dependencies.
Install from PyPI
The most straightforward way to install the qiskit-addon-obp
package is via PyPI.
pip install qiskit-addon-obp
Build from source
Users who wish to contribute to this package or who want to install it manually may do so by first cloning the repository:
git clone git@github.com:Qiskit/qiskit-addon-obp.git
```_
and install the package via `pip`. The repository also contains example notebooks. If you plan on developing in the repository, install the `dev` dependencies.
Adjust the options to suit your needs:
```bash
pip install tox notebook -e '.[notebook-dependencies, dev]'
Theoretical background
When using the Estimator primitive, the output of a quantum workload is the estimation of one or more expectation values with respect to some state prepared using a QPU. This section summarizes the procedure.
First, start by writing the expectation value measurement of an observable in terms of some initial state and a quantum circuit :
To distribute this problem across both classical and quantum resources, split the circuit into two subcircuits, and , classically simulate the circuit , then execute the circuit on quantum hardware and use the results of the classical simulation to reconstruct the measurement of the observable .
The subcircuit should be selected to be classically simulable and will compute the expectation value
which is the version of the initial operator evolved through the circuit . Once has been determined, the quantum workload is prepared wherein the state is initiated, has the circuit applied to it, and then measures the expectation value . You can show that this is equivalent to measuring by writing:
Lastly, in order to measure the expectation value , we must require it to be decomposable into a sum of Pauli strings
where are real coefficients of the decomposition and is some Pauli string composed of , , , and operators. This ensures that you can reconstruct the expectation value of by
Truncating terms
This scheme offers a tradeoff between the required circuit depth of , the number of circuit executions on quantum hardware, and the amount of classical computing resources needed to compute . In general, as you choose to backpropagate further through a circuit, the number of Pauli strings to measure as well as the error-mitigation overhead both grow exponentially (alongside the classical resources needed to simulate ).
Fortunately, the decomposition of can often contain coefficients that are quite small and can be truncated from the final measurements used to reconstruct without incurring much error. The qiskit-addon-obp
package possesses functionality to specify an error budget, which can automatically search for terms that can be truncated, to within some error tolerance.
Clifford perturbation theory
Lastly, the qiskit-addon-obp
package approaches operator backpropagation based on Clifford perturbation theory. This method has the benefit that the overhead incurred by backpropagating various gates scales with the non-Cliffordness of (i.e. how much of U C is comprised of non-Clifford instructions).
This approach to OBP begins by splitting the simulated circuit, , into slices:
where represents the total number of slices and denotes a single slice of the circuit . Each of these slices are then analytically applied in sequence to measure the back propagated operator and may or may not contribute to the overall size of the sum, depending on if the slice is a Clifford vs non-Clifford operation. If an error budget is allocated, truncation will then occur between the application of each slice.
Next steps
- Get started with OBP.
- Become familiar with the error mitigation techniques available in Qiskit Runtime.