Note
This is the documentation for the current state of the development branch of Qiskit Experiments. The documentation or APIs here can change prior to being released.
Quantum Volume¶
Quantum Volume (QV) is a single-number metric that can be measured using a concrete protocol on near-term quantum computers of modest size. The QV method quantifies the largest random circuit of equal width and depth that the computer successfully implements. Quantum computing systems with high-fidelity operations, high connectivity, large calibrated gate sets, and circuit rewriting toolchains are expected to have higher quantum volumes. See the Qiskit Textbook for an explanation on the QV method, which is described in Refs. [1] [2].
The Quantum Volume is determined by the largest successful circuit depth
\(d_{max}\), and equals to \(2^{d_{max}}\). In this experiment,
we generate QV circuits using the qiskit.circuit.library.QuantumVolume
class
on \(d\) qubits, which contain \(d\) layers, where each layer
consists of random 2-qubit unitary gates from \(SU(4)\), followed by
a random permutation on the \(d\) qubit. Then these circuits run on
the quantum backend and on an ideal simulator (either qiskit_aer.AerSimulator
or qiskit.quantum_info.Statevector
).
A depth \(d\) QV circuit is successful if it has mean heavy-output probability > 2/3 with confidence level > 0.977 (corresponding to z_value = 2), and at least 100 trials have been ran.
Note
This tutorial requires the qiskit-aer and qiskit-ibm-runtime
packages to run simulations. You can install them with python -m pip
install qiskit-aer qiskit-ibm-runtime
.
from qiskit_experiments.framework import BatchExperiment
from qiskit_experiments.library import QuantumVolume
# For simulation
from qiskit_aer import AerSimulator
from qiskit_ibm_runtime.fake_provider import FakeSydneyV2
backend = AerSimulator.from_backend(FakeSydneyV2())
QV experiment¶
To run the QV experiment we need need to provide the following QV parameters, in order to generate the QV circuits and run them on a backend and on an ideal simulator:
qubits
: The number of qubits or list of physical qubits for the experiment.trials
: The number of trials to run the quantum volume circuit (the default is 100).seed
: Seed or generator object for random number generation. IfNone
thendefault_rng
will be used.simulation_backend
: The simulator backend to use to generate the expected results. the simulator must have asave_probabilities
method. If None,AerSimulator
will be used (in caseAerSimulator
is not installed,Statevector
will be used).
Note: In some cases, 100 trials are not enough to obtain a QV greater than 1 for the specified number of qubits. In this case, adding more trials may reduce the error bars to allow passing the threshold.
The analysis results of the QV Experiment are:
The mean heavy-output probabilities (HOP) and standard deviation
The calculated quantum volume, which will be None if the experiment does not pass the threshold
Extra data included in the analysis results includes
The heavy HOPs for each trial
Confidence level (should be greater than 0.977)
The number of trials and depth of the QV circuits
Whether the QV circuit was successful
qubits = tuple(range(4)) # Can use specific qubits. for example [2, 4, 7, 10]
qv_exp = QuantumVolume(qubits, seed=42)
# Transpile options like optimization_level affect only the real device run and not the simulation run
# Run options affect both simulation and real device runs
qv_exp.set_transpile_options(optimization_level=3)
# Run experiment
expdata = qv_exp.run(backend).block_for_results()
# View result data
display(expdata.figure(0))
for result in expdata.analysis_results():
print(result)
AnalysisResult
- name: mean_HOP
- value: 0.73+/-0.04
- quality: bad
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3']
- verified: False
AnalysisResult
- name: quantum_volume
- value: 1
- quality: bad
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3']
- verified: False
# Print extra data
for result in expdata.analysis_results():
print(f"\n{result.name} extra:")
for key, val in result.extra.items():
print(f"- {key}: {val}")
mean_HOP extra:
- HOPs: [0.7177734375, 0.740234375, 0.67578125, 0.73046875, 0.78125, 0.7333984375, 0.671875, 0.6884765625, 0.7119140625, 0.7275390625, 0.6904296875, 0.693359375, 0.7607421875, 0.7529296875, 0.80078125, 0.76953125, 0.6708984375, 0.740234375, 0.7041015625, 0.767578125, 0.666015625, 0.7177734375, 0.681640625, 0.703125, 0.744140625, 0.720703125, 0.7138671875, 0.6875, 0.859375, 0.765625, 0.6875, 0.75390625, 0.74609375, 0.6328125, 0.7314453125, 0.8046875, 0.7041015625, 0.8671875, 0.66015625, 0.693359375, 0.697265625, 0.724609375, 0.775390625, 0.8193359375, 0.693359375, 0.7568359375, 0.70703125, 0.7451171875, 0.703125, 0.75390625, 0.689453125, 0.755859375, 0.66796875, 0.708984375, 0.76171875, 0.720703125, 0.7265625, 0.80859375, 0.701171875, 0.6865234375, 0.7041015625, 0.6767578125, 0.71875, 0.7080078125, 0.7265625, 0.732421875, 0.6806640625, 0.6875, 0.7333984375, 0.7080078125, 0.6904296875, 0.658203125, 0.697265625, 0.8310546875, 0.6884765625, 0.7470703125, 0.740234375, 0.8212890625, 0.841796875, 0.7138671875, 0.720703125, 0.712890625, 0.7958984375, 0.7080078125, 0.7626953125, 0.7431640625, 0.7412109375, 0.7412109375, 0.8173828125, 0.7392578125, 0.8330078125, 0.7060546875, 0.783203125, 0.7138671875, 0.7978515625, 0.62109375, 0.7353515625, 0.8056640625, 0.7490234375, 0.677734375]
- two_sigma: 0.0887036544571665
- depth: 4
- trials: 100
- success: None
- confidence: None
- experiment: QuantumVolume
- run_time: None
quantum_volume extra:
- HOPs: None
- two_sigma: None
- depth: 4
- trials: 100
- success: False
- confidence: 0.9260700033402516
- experiment: QuantumVolume
- run_time: None
Adding trials¶
Adding more trials may reduce the error bars to allow passing the threshold (beside the error bars - QV experiment must have at least 100 trials to be considered successful). In case you want to add less than 100 additional trials, you can modify the amount of trials added before re-running the experiment.
qv_exp.set_experiment_options(trials=60)
expdata2 = qv_exp.run(backend, analysis=None).block_for_results()
expdata2.add_data(expdata.data())
qv_exp.analysis.run(expdata2).block_for_results()
# View result data
display(expdata2.figure(0))
for result in expdata2.analysis_results():
print(result)
AnalysisResult
- name: mean_HOP
- value: 0.731+/-0.035
- quality: bad
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3']
- verified: False
AnalysisResult
- name: quantum_volume
- value: 1
- quality: bad
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3']
- verified: False
Calculating Quantum Volume using a batch experiment¶
Run the QV experiment with an increasing number of qubits to check what is the maximum Quantum Volume for the specific device. To reach the real system’s Quantum Volume, one must run more trials and additional enhancements might be required (See Ref. [2] for details).
exps = [QuantumVolume(tuple(range(i)), trials=200) for i in range(3, 6)]
batch_exp = BatchExperiment(exps)
batch_exp.set_transpile_options(optimization_level=3)
# Run
batch_expdata = batch_exp.run(backend).block_for_results()
Extracting the maximum Quantum Volume.
qv_values = [
batch_expdata.analysis_results("quantum_volume")[i].value
for i in range(batch_exp.num_experiments)
]
print(f"Max quantum volume is: {max(qv_values)}")
Max quantum volume is: 32
for i in range(batch_exp.num_experiments):
print(f"\nComponent experiment {i}")
display(batch_expdata.figure(i))
for result in batch_expdata.analysis_results():
print(result)
Component experiment 0
Component experiment 1
Component experiment 2
AnalysisResult
- name: mean_HOP
- value: 0.799+/-0.028
- quality: good
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2']
- verified: False
AnalysisResult
- name: quantum_volume
- value: 8
- quality: good
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2']
- verified: False
AnalysisResult
- name: mean_HOP
- value: 0.732+/-0.031
- quality: good
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3']
- verified: False
AnalysisResult
- name: quantum_volume
- value: 16
- quality: good
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3']
- verified: False
AnalysisResult
- name: mean_HOP
- value: 0.735+/-0.031
- quality: good
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3', 'Q4']
- verified: False
AnalysisResult
- name: quantum_volume
- value: 32
- quality: good
- extra: <8 items>
- device_components: ['Q0', 'Q1', 'Q2', 'Q3', 'Q4']
- verified: False
References¶
See also¶
API documentation:
quantum_volume
Qiskit Textbook: Measuring Quantum Volume