Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.aer.utils.NoiseTransformer

class NoiseTransformer[소스]

Transforms one quantum channel to another based on a specified criteria.

__init__()[소스]

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__()

Initialize self.

channel_matrix_representation(operators)

We convert the operators to a matrix by applying the channel to the four basis elements of the 2x2 matrix space representing density operators; this is standard linear algebra

compute_P(As)

This method creates the matrix P in the f(x) = 1/2(x*P*x)+q*x representation of the objective function :param As: list of symbolic matrices repersenting the channel matrices :type As: list

compute_channel_operation(rho, operators)

Given a quantum state’s density function rho, the effect of the channel on this state is: rho -> sum_{i=1}^n E_i * rho * E_i^dagger

compute_q(As, C)

This method creates the vector q for the f(x) = 1/2(x*P*x)+q*x representation of the objective function :param As: list of symbolic matrices repersenting the quadratic program :type As: list :param C: matrix representing the the constant channel matrix :type C: matrix

fidelity(channel)

Calculates channel fidelity

flatten_matrix(m)

param m

The matrix to flatten

generate_channel_matrices(…)

Generate symbolic channel matrices.

generate_channel_quadratic_programming_matrices(…)

Generate matrices for quadratic program.

get_const_matrix_from_channel(channel, symbols)

Extract the numeric constant matrix.

get_matrix_from_channel(channel, symbol)

Extract the numeric parameter matrix.

operator_circuit(operator)

Converts an operator representation to noise circuit.

operator_matrix(operator)

Converts an operator representation to Kraus matrix representation

prepare_channel_operator_list(ops_list)

Prepares a list of channel operators.

prepare_honesty_constraint(…)

Prepares the honesty constraint.

solve_quadratic_program(P, q)

Solve the quadratic program optimization problem.

transform_by_given_channel(channel_matrices, …)

Transform by by quantum channels.

transform_by_operator_list(…)

Transform input Kraus operators.

channel_matrix_representation(operators)[소스]

We convert the operators to a matrix by applying the channel to the four basis elements of the 2x2 matrix space representing density operators; this is standard linear algebra

매개변수

operators (list) – The list of operators to transform into a Matrix

반환값

The matrx representation of the operators

반환 형식

sympy.Matrix

compute_P(As)[소스]

This method creates the matrix P in the f(x) = 1/2(x*P*x)+q*x representation of the objective function :param As: list of symbolic matrices repersenting the channel matrices :type As: list

반환값

The matrix P for the description of the quadaric program

반환 형식

matrix

static compute_channel_operation(rho, operators)[소스]

Given a quantum state’s density function rho, the effect of the channel on this state is: rho -> sum_{i=1}^n E_i * rho * E_i^dagger

매개변수
  • rho (number) – Density function

  • operators (list) – List of operators

반환값

The result of applying the list of operators

반환 형식

number

compute_q(As, C)[소스]

This method creates the vector q for the f(x) = 1/2(x*P*x)+q*x representation of the objective function :param As: list of symbolic matrices repersenting the quadratic program :type As: list :param C: matrix representing the the constant channel matrix :type C: matrix

반환값

The vector q for the description of the quadaric program

반환 형식

list

static fidelity(channel)[소스]

Calculates channel fidelity

static flatten_matrix(m)[소스]
매개변수

m (Matrix) – The matrix to flatten

반환값

A row vector repesenting the flattened matrix

반환 형식

list

generate_channel_matrices(transform_channel_operators_list)[소스]

Generate symbolic channel matrices.

Generates a list of 4x4 symbolic matrices describing the channel defined from the given operators. The identity matrix is assumed to be the first element in the list:

[(I, ), (A1, B1, ...), (A2, B2, ...), ..., (An, Bn, ...)]

E.g. for a Pauli channel, the matrices are:

[(I,), (X,), (Y,), (Z,)]

For relaxation they are:

[(I, ), (|0><0|, |0><1|), |1><0|, |1><1|)]

We consider this input to symbolically represent a channel in the following manner: define indeterminates \(x_0, x_1, ..., x_n\) which are meant to represent probabilities such that \(x_i \ge 0\) and \(x0 = 1-(x_1 + ... + x_n)\).

Now consider the quantum channel defined via the Kraus operators \({\sqrt(x_0)I, \sqrt(x_1) A_1, \sqrt(x1) B_1, ..., \sqrt(x_m)A_n, \sqrt(x_n) B_n, ...}\) This is the channel C symbolically represented by the operators.

매개변수

transform_channel_operators_list (list) – A list of tuples of matrices which represent Kraus operators.

반환값

A list of 4x4 complex matrices ([D1, D2, ..., Dn], E) such that the matrix \(x_1 D_1 + ... + x_n D_n + E\) represents the operation of the channel C on the density operator. we find it easier to work with this representation of C when performing the combinatorial optimization.

반환 형식

list

generate_channel_quadratic_programming_matrices(channel, symbols)[소스]

Generate matrices for quadratic program.

매개변수
  • channel (Matrix) – a 4x4 symbolic matrix

  • symbols (list) – the symbols x1, …, xn which may occur in the matrix

반환값

A list of 4x4 complex matrices ([D1, D2, …, Dn], E) such that: channel == x1*D1 + … + xn*Dn + E

반환 형식

list

static get_const_matrix_from_channel(channel, symbols)[소스]

Extract the numeric constant matrix.

매개변수
  • channel (matrix) – a 4x4 symbolic matrix.

  • symbols (list) – The full list [x1, …, xn] of symbols used in the matrix.

반환값

a 4x4 numeric matrix.

반환 형식

matrix

Additional Information:

Each entry of the 4x4 symbolic input channel matrix is assumed to be a polynomial of the form a1x1 + … + anxn + c. The corresponding entry in the output numeric matrix is c.

static get_matrix_from_channel(channel, symbol)[소스]

Extract the numeric parameter matrix.

매개변수
  • channel (matrix) – a 4x4 symbolic matrix.

  • symbol (list) – a symbol xi

반환값

a 4x4 numeric matrix.

반환 형식

matrix

Additional Information:

Each entry of the 4x4 symbolic input channel matrix is assumed to be a polynomial of the form a1x1 + … + anxn + c. The corresponding entry in the output numeric matrix is ai.

operator_circuit(operator)[소스]

Converts an operator representation to noise circuit.

매개변수

operator (operator) – operator representation. Can be a noise circuit or a matrix or a list of matrices.

반환값

The operator, converted to noise circuit representation.

반환 형식

List

operator_matrix(operator)[소스]

Converts an operator representation to Kraus matrix representation

매개변수

operator (operator) – operator representation. Can be a noise circuit or a matrix or a list of matrices.

반환값

the operator, converted to Kraus representation.

반환 형식

Kraus

static prepare_channel_operator_list(ops_list)[소스]

Prepares a list of channel operators.

매개변수

ops_list (List) – The list of operators to prepare

반환값

The channel operator list

반환 형식

List

prepare_honesty_constraint(transform_channel_operators_list)[소스]

Prepares the honesty constraint.

매개변수
  • transform_channel_operators_list (list) – A list of tuples of matrices which represent

  • operators. (Kraus) –

solve_quadratic_program(P, q)[소스]

Solve the quadratic program optimization problem.

This function solved the quadratic program to minimize the objective function f(x) = 1/2(x*P*x)+q*x subject to the additional constraints Gx <= h

Where P, q are given and G,h are computed to ensure that x represents a probability vector and subject to honesty constraints if required :param P: A matrix representing the P component of the objective function :type P: matrix :param q: A vector representing the q component of the objective function :type q: list

반환값

The solution of the quadratic program (represents probabilities)

반환 형식

list

Additional information:

This method is the only place in the code where we rely on the cvxpy library should we consider another library, only this method needs to change.

transform_by_given_channel(channel_matrices, const_channel_matrix)[소스]

Transform by by quantum channels.

This method creates objective function representing the Hilbert-Schmidt norm of the matrix (A-B) obtained as the difference of the input noise channel and the output channel we wish to determine.

This function is represented by a matrix P and a vector q, such that f(x) = 1/2(x*P*x)+q*x where x is the vector we wish to minimize, where x represents probabilities for the noise operators that construct the output channel

매개변수
  • channel_matrices (list) – A list of 4x4 symbolic matrices

  • const_channel_matrix (matrix) – a 4x4 constant matrix

반환값

a list of the optimal probabilities for the channel matrices, determined by the quadratic program solver

반환 형식

list

transform_by_operator_list(transform_channel_operators, noise_kraus_operators)[소스]

Transform input Kraus operators.

Allows approximating a set of input Kraus operators as in terms of a different set of Kraus matrices.

For example, setting \([X, Y, Z]\) allows approximating by a Pauli channel, and \([(|0 \langle\rangle 0|, |0\langle\rangle 1|), |1\langle\rangle 0|, |1 \langle\rangle 1|)]\) represents the relaxation channel

In the case the input is a list \([A_1, A_2, ..., A_n]\) of transform matrices and \([E_0, E_1, ..., E_m]\) of noise Kraus operators, the output is a list \([p_1, p_2, ..., p_n]\) of probabilities such that:

  1. \(p_i \ge 0\)

  2. \(p_1 + ... + p_n \le 1\)

  3. \([\sqrt(p_1) A_1, \sqrt(p_2) A_2, ..., \sqrt(p_n) A_n, \sqrt(1-(p_1 + ... + p_n))I]\) is a list of Kraus operators that define the output channel (which is “close” to the input channel given by \([E_0, ..., E_m]\).)

This channel can be thought of as choosing the operator \(A_i\) in probability \(p_i\) and applying this operator to the quantum state.

More generally, if the input is a list of tuples (not necessarily of the same size): \([(A_1, B_1, ...), (A_2, B_2, ...), ..., (A_n, B_n, ...)]\) then the output is still a list \([p_1, p_2, ..., p_n]\) and now the output channel is defined by the operators: \([\sqrt(p_1)A1, \sqrt(p_1)B_1, ..., \sqrt(p_n)A_n, \sqrt(p_n)B_n, ..., \sqrt(1-(p_1 + ... + p_n))I]\)

매개변수
  • noise_kraus_operators (List) – a list of matrices (Kraus operators) for the input channel.

  • transform_channel_operators (List) – a list of matrices or tuples of matrices representing Kraus operators that can construct the output channel.

반환값

A list of amplitudes that define the output channel.

반환 형식

List