qiskit.providers.aer.noise.ReadoutError¶
-
class
ReadoutError
(probabilities, atol=1e-08)[código fonte]¶ Readout error class for Qiskit Aer noise model.
Create a readout error for a noise model.
For an N-qubit readout error probabilities are entered as vectors:
probabilities[m] = [P(0|m), P(1|m), ..., P(2 ** N - 1|m)]
where
P(n|m)
is the probability of recording a noisy measurement outcome asn
given the true ideal measurement outcome wasm
, wheren
andm
are integer representations of bit-strings.Example: 1-qubit
probabilities[0] = [P("0"|"0"), P("1"|"0")] probabilities[1] = [P("0"|"1"), P("1"|"1")]
Example: 2-qubit
probabilities[0] = [P("00"|"00"), P("01"|"00"), P("10"|"00"), P("11"|"00")] probabilities[1] = [P("00"|"01"), P("01"|"01"), P("10"|"01"), P("11"|"01")] probabilities[2] = [P("00"|"10"), P("01"|"10"), P("10"|"10"), P("11"|"10")] probabilities[3] = [P("00"|"11"), P("01"|"11"), P("10"|"11"), P("11"|"11")]
- Parâmetros
probabilities (matrix) – List of outcome assignment probabilities.
atol (double) – Threshold for checking probabilities are normalized (Default: 1e-8).
-
__init__
(probabilities, atol=1e-08)[código fonte]¶ Create a readout error for a noise model.
For an N-qubit readout error probabilities are entered as vectors:
probabilities[m] = [P(0|m), P(1|m), ..., P(2 ** N - 1|m)]
where
P(n|m)
is the probability of recording a noisy measurement outcome asn
given the true ideal measurement outcome wasm
, wheren
andm
are integer representations of bit-strings.Example: 1-qubit
probabilities[0] = [P("0"|"0"), P("1"|"0")] probabilities[1] = [P("0"|"1"), P("1"|"1")]
Example: 2-qubit
probabilities[0] = [P("00"|"00"), P("01"|"00"), P("10"|"00"), P("11"|"00")] probabilities[1] = [P("00"|"01"), P("01"|"01"), P("10"|"01"), P("11"|"01")] probabilities[2] = [P("00"|"10"), P("01"|"10"), P("10"|"10"), P("11"|"10")] probabilities[3] = [P("00"|"11"), P("01"|"11"), P("10"|"11"), P("11"|"11")]
- Parâmetros
probabilities (matrix) – List of outcome assignment probabilities.
atol (double) – Threshold for checking probabilities are normalized (Default: 1e-8).
Methods
__init__
(probabilities[, atol])Create a readout error for a noise model.
compose
(other[, front])Return the composition readout error other * self.
copy
()Make a copy of current ReadoutError.
dot
(other)Return the composition readout error self * other.
expand
(other)Return the tensor product readout error self ⊗ other.
ideal
()Return True if current error object is an identity
power
(n)Return the compose of the readout error with itself n times.
set_atol
(value)Set the class default absolute tolerance parameter for float comparisons.
set_rtol
(value)Set the class default relative tolerance parameter for float comparisons.
tensor
(other)Return the tensor product readout error self ⊗ other.
to_dict
()Return the current error as a dictionary.
Convert the ReadoutError to a circuit Instruction.
Attributes
The default absolute tolerance parameter for float comparisons.
Return the number of qubits for the error.
Return the readout error probabilities matrix.
The relative tolerance parameter for float comparisons.
-
property
atol
¶ The default absolute tolerance parameter for float comparisons.
-
compose
(other, front=False)[código fonte]¶ Return the composition readout error other * self.
Note that for front=True this is equivalent to the
ReadoutError.dot()
method.- Parâmetros
other (ReadoutError) – a readout error.
front (bool) – If True return the reverse order composation self * other instead [default: False].
- Retorna
The composition readout error.
- Tipo de retorno
- Levanta
NoiseError – if other is not a ReadoutError or has incompatible
dimensions. –
-
copy
()[código fonte]¶ Make a copy of current ReadoutError.
-
dot
(other)[código fonte]¶ Return the composition readout error self * other.
- Parâmetros
other (ReadoutError) – a readout error.
- Retorna
The composition readout error.
- Tipo de retorno
- Levanta
NoiseError – if other is not a ReadoutError or has incompatible
dimensions. –
-
expand
(other)[código fonte]¶ Return the tensor product readout error self ⊗ other.
- Parâmetros
other (ReadoutError) – a readout error.
- Retorna
the tensor product readout error other ⊗ self.
- Tipo de retorno
- Levanta
NoiseError – if other is not a ReadoutError.
-
ideal
()[código fonte]¶ Return True if current error object is an identity
-
property
number_of_qubits
¶ Return the number of qubits for the error.
-
power
(n)[código fonte]¶ Return the compose of the readout error with itself n times.
- Parâmetros
n (int) – the number of times to compose with self (n>0).
- Retorna
the n-times composition channel.
- Tipo de retorno
- Levanta
NoiseError – if the power is not a positive integer.
-
property
probabilities
¶ Return the readout error probabilities matrix.
-
property
rtol
¶ The relative tolerance parameter for float comparisons.
-
classmethod
set_atol
(value)[código fonte]¶ Set the class default absolute tolerance parameter for float comparisons.
-
classmethod
set_rtol
(value)[código fonte]¶ Set the class default relative tolerance parameter for float comparisons.
-
tensor
(other)[código fonte]¶ Return the tensor product readout error self ⊗ other.
- Parâmetros
other (ReadoutError) – a readout error.
- Retorna
the tensor product readout error self ⊗ other.
- Tipo de retorno
- Levanta
NoiseError – if other is not a ReadoutError.
-
to_dict
()[código fonte]¶ Return the current error as a dictionary.
-
to_instruction
()[código fonte]¶ Convert the ReadoutError to a circuit Instruction.