Due to a bug that is pending a fix this notebook currently does not run.
Noisy simulation
Quantum circuits running on real machines are affected by a variety of stochastic noises. In QURI Parts, noise models can be defined to represent these noises and reproduce them on simulators. (Qulacs is used in this tutorial.)
Prerequisite
QURI Parts modules used in this tutorial: quri-parts-circuit
, quri-parts-core
, and quri-parts-qulacs
. You can install them as follows:
!pip install "quri-parts[qulacs]"
Requirement already satisfied: quri-parts[qulacs] in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (0.20.3)
Requirement already satisfied: quri-parts-algo in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts[qulacs]) (0.20.3)
Requirement already satisfied: quri-parts-chem in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts[qulacs]) (0.20.3)
Requirement already satisfied: quri-parts-circuit in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts[qulacs]) (0.20.3)
Requirement already satisfied: quri-parts-core in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts[qulacs]) (0.20.3)
Requirement already satisfied: quri-parts-qulacs in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts[qulacs]) (0.20.3)
Requirement already satisfied: scipy<2.0.0,>=1.9.1 in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts-algo->quri-parts[qulacs]) (1.14.1)
Requirement already satisfied: typing-extensions<5.0.0,>=4.1.1 in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts-algo->quri-parts[qulacs]) (4.12.2)
Requirement already satisfied: numpy>=1.22.0 in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts-circuit->quri-parts[qulacs]) (1.26.4)
Requirement already satisfied: quri-parts-rust in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts-circuit->quri-parts[qulacs]) (0.20.2)
Requirement already satisfied: networkx in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts-core->quri-parts[qulacs]) (3.4.2)
Requirement already satisfied: Qulacs<0.7.0,>=0.3.0 in /home/drokles/.cache/pypoetry/virtualenvs/quri-sdk-notebooks-AzU4R8Lq-py3.11/lib/python3.11/site-packages (from quri-parts-qulacs->quri-parts[qulacs]) (0.6.10)
Overview
Prepare a circuit
First, prepare a circuit to apply noise.
from quri_parts.circuit import QuantumCircuit
circuit = QuantumCircuit(3)
circuit.add_H_gate(2)
circuit.add_X_gate(0)
circuit.add_CNOT_gate(2, 1)
circuit.add_Z_gate(2)
Create a noise model
Next, create a noise model. Create several NoiseInstruction
s that represent noises and their application conditions, and add them to NoiseModel
.
(This is a noise model to illustrate API functionality and is not a realistic example. Noise models should be adjusted to match the characteristics of the actual equipment of interest.)
import quri_parts.circuit.gate_names as gate_names
from quri_parts.circuit.noise import (
BitFlipNoise,
BitPhaseFlipNoise,
DepolarizingNoise,
DepthIntervalNoise,
MeasurementNoise,
NoiseModel,
PauliNoise,
PhaseFlipNoise,
)
noises = [
# Single qubit noise
BitFlipNoise(
error_prob=0.004,
qubit_indices=[0, 2], # Qubit 0 or 2
target_gates=[gate_names.H, gate_names.CNOT], # H or CNOT gates
),
DepolarizingNoise(
error_prob=0.003,
qubit_indices=[], # All qubits
target_gates=[gate_names.X, gate_names.CNOT] # X or CNOT gates
),
PhaseFlipNoise(
error_prob=0.002,
qubit_indices=[1, 0], # Qubit 0 or 1
target_gates=[] # All kind of gates
),
BitPhaseFlipNoise(
error_prob=0.001,
qubit_indices=[], # All qubits
target_gates=[], # All kind of gates
),
# Multi qubit noise
PauliNoise(
pauli_list=[[1, 2], [2, 3]],
prob_list=[0.001, 0.002],
qubit_indices=[1, 2], # 2 qubit gates applying to qubits (1, 2) or (2, 1)
target_gates=[gate_names.CNOT] # CNOT gates
),
# Circuit noise
DepthIntervalNoise([PhaseFlipNoise(0.001)], depth_interval=5),
MeasurementNoise([BitFlipNoise(0.004), DepolarizingNoise(0.003)]),
]
model = NoiseModel(noises)
For single qubit noises, you can specify the target qubit indices and the target gate names. If the argument is omitted or an empty list is given, all qubits or gates are treated as targets.
The method to specify application condition is similar for multi qubit noises, but the target qubit indices requires the complete set of qubits (in any order) for the target gate. The noise is applied to the qubits sorted as specified in the target gate. For example, if the target gate is specified as CNOT(5, 3), then the noise applied to the qubits (5, 3) not (3, 5).
Interface
This section is devoted to introduce the NoiseInstruction
interface and various NoiseInstruction
s provided by QURI Parts. The NoiseInstruction
is a type alias that represents 2 types of noise instructions:
CircuitNoiseInstruction
: Represents the noise applied depending on the structure of the circuit.GateNoiseInstruction
: Represents the noise that is applied when individual gates act on qubits.
CircuitNoiseInstruction
A CircuitNoiseInstruction
represents the noise applied depending on the structure of the circuit. Here are the list of CircuitNoiseInstruction
QURI Parts provide.
Name | Description | Input |
---|---|---|
GateIntervalNoise | For each qubit, given single qubit noises are applied each time a certain number of gates are applied. | - single_qubit_noises - gate_interval |
DepthIntervalNoise | Apply the given single qubit GateNoiseInstruction to all qubits every time a certain depth is advanced. | - single_qubit_noises - depth_interval |
MeasurementNoise | Noise which occurs during the measurement of a qubit | - single_qubit_noises - qubit_indices |
GateNoiseInstruction
GateNoiseInstruction
represents the noise that is applied when individual gates act on qubits. It is a dataclass with the following attributes:
- name: Name of the noise.
- qubit_count: Number of qubits this error affects.
- params: Parameters such as error probability, etc. (Depends on the concrete error type.)
- qubit_indices: Indices of qubits this error affects.
- target_gates: Gates affected by this error.
QURI Parts provide several implemetations of GateNoiseInstruction
s and some special sub-types of them, which we list in later subsections:
Basic GateNoiseInstruction
Here, we first start with the basic implementations of GateNoiseInstruction
. They are constructed with 3 parameters:
- error_prob: The probability the noise causes error.
- qubit_indices: The qubit on which the noise can occur. If nothing is passed it, it indicates that the noise can happen on all the qubits in the circuit.
- target_gates: The gates that can generate the noise. If nothing is passed it, it indicates that all the gates are subjected to the noise.
Here we list out these errors:
Name | Description | Input |
---|---|---|
BitFlipNoise | Single qubit bit flip noise | - error_prob - qubit_indices - target_gates |
PhaseFlipNoise | Single qubit phase flip noise | - error_prob - qubit_indices - target_gates |
BitPhaseFlipNoise | Single qubit bit and phase flip noise. | - error_prob - qubit_indices - target_gates |
DepolarizingNoise | Single qubit depolarizing noise. | - error_prob - qubit_indices - target_gates |
PauliNoise
PauliNoise
is a subtype of GateNoiseInstruction
that involves Pauli gates acting on multiple qubits. We summarize the PauliNoise
that QURI Parts provide. Note that in the input column, we omit the arguments qubit_indices
and target_gates
as all the noise instructions require them. We also include the formula of the density matrix after the noise is applied to the state.
Name | Description | Input | Density matrix after noise |
---|---|---|---|
PauliNoise | Multi qubit Pauli noise. | - pauli_list - prob_list - eq_tolerance | |
GeneralDepolarizingNoise | Multi qubit general depolarizing noise | - error_prob - qubit_count |