Measurement protocols
Sample-based measurement protocols are fundamental tools for the prediction and estimation of a quantum state as the result of NISQ programs executions. Their resource efficient implementation is a current and active research field. Qadence offers two main measurement protocols: quantum state tomography and classical shadows.
Quantum state tomography
The fundamental task of quantum state tomography is to learn an approximate classical description of an output quantum state described by a density matrix
The main drawback is the scaling in measurements for the retrieval of the classical expression for a
For an observable expressed as a Pauli string
The operator
In Qadence, running a tomographical experiment is made simple by defining a Measurements
object that captures all options for execution:
from torch import tensor
from qadence import hamiltonian_factory, BackendName, DiffMode
from qadence import Parameter, chain, kron, RX, RY, Z, QuantumCircuit, QuantumModel
from qadence.measurements import Measurements
# Define parameters for a circuit.
theta1 = Parameter("theta1", trainable=False)
theta2 = Parameter("theta2", trainable=False)
theta3 = Parameter("theta3", trainable=False)
theta4 = Parameter("theta4", trainable=False)
blocks = chain(
kron(RX(0, theta1), RY(1, theta2)),
kron(RX(0, theta3), RY(1, theta4)),
)
values = {
"theta1": tensor([0.5]),
"theta2": tensor([1.5]),
"theta3": tensor([2.0]),
"theta4": tensor([2.5]),
}
# Create a circuit and an observable.
circuit = QuantumCircuit(2, blocks)
observable = hamiltonian_factory(2, detuning=Z)
# Create a model.
model = QuantumModel(
circuit=circuit,
observable=observable,
backend=BackendName.PYQTORCH,
diff_mode=DiffMode.GPSR,
)
# Define a measurement protocol by passing the shot budget as an option.
tomo_options = {"n_shots": 100000}
tomo_measurement = Measurements(protocol=Measurements.TOMOGRAPHY, options=tomo_options)
# Get the exact expectation value.
exact_values = model.expectation(
values=values,
)
# Run the tomography experiment.
estimated_values_tomo = model.expectation(
values=values,
measurement=tomo_measurement,
)
Classical shadows
Recently, a much less resource demanding protocol based on classical shadows has been proposed1. It combines ideas from shadow tomography2 and randomized measurement protocols capable of learning a classical shadow of an unknown quantum state
A random measurement consists of applying random unitary rotations before a fixed measurement on each copy of a state. Appropriately averaging over these measurements produces an efficient estimator for the expectation value of an observable. This protocol therefore creates a robust classical representation of the quantum state or classical shadow. The captured measurement information is then reuseable for multiple purposes, i.e. any observable expected value and available for noise mitigation postprocessing.
A classical shadow is therefore an unbiased estimator of a quantum state
It is worth noting that the single classical snapshot
Along the same lines as the example before, estimating the expectation value using classical shadows in Qadence only requires to pass the right set of parameters to the Measurements
object:
# Classical shadows are defined up to some accuracy and confidence.
shadow_options = {"accuracy": 0.1, "confidence": 0.1} # Shadow size N=54400.
shadow_measurement = Measurements(protocol=Measurements.SHADOW, options=shadow_options)
# Run the experiment with classical shadows.
estimated_values_shadow = model.expectation(
values=values,
measurement=shadow_measurement,
)
References
-
Hsin-Yuan Huang, Richard Kueng and John Preskill, Predicting Many Properties of a Quantum System from Very Few Measurements (2020) ↩↩
-
S. Aaronson. Shadow tomography of quantum states. In Proceedings of the 50th Annual A ACM SIGACT Symposium on Theory of Computing, STOC 2018, pages 325–338, New York, NY, USA, 2018. ACM ↩