qiskit.ignis.verification.BConfig¶
-
class
BConfig
(backend, indicator=True)[소스]¶ This class is used to create a GHZ circuit with parallellized CNOT gates to increase fidelity
-
__init__
(backend, indicator=True)[소스]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(backend[, indicator])Initialize self.
get_ghz_layout
(n[, transpiled, barriered])Feeds the Tier Dict of the backend to create a basic qiskit GHZ circuit with no measurement; :type n:
int
:param n: number of qubits :type transpiled:bool
:param transpiled: toggle on/off transpilation - useful for tomography :type barriered:bool
:param barriered: yes/no whether to barrier each step of CNOT gatesget_ghz_mqc
(n, delta[, full_measurement])This function creates an MQC circuit with n qubits, where the middle phase rotation around the z axis is by delta
get_ghz_mqc_para
(n[, full_measurement])Get a parametrized MQC circuit.
get_ghz_po
(n, delta)This function creates an Parity Oscillation circuit with n qubits, where the middle superposition rotation around the x and y axes is by delta
Get a parametrized PO circuit.
get_ghz_simple
(n[, full_measurement])Get simple GHZ circuit with measurement
get_measurement_circ
(n, qregname, cregname)Creates a measurement circuit that can toggle between measuring the control qubit or measuring all qubits.
Take the nodes of the BConfig to create a Tier Dictionary, where keys are the steps in the process, and the values are the connections following pattern of: [controlled qubit, NOT qubit].
-
get_ghz_layout
(n, transpiled=True, barriered=True)[소스]¶ Feeds the Tier Dict of the backend to create a basic qiskit GHZ circuit with no measurement; :type n:
int
:param n: number of qubits :type transpiled:bool
:param transpiled: toggle on/off transpilation - useful for tomography :type barriered:bool
:param barriered: yes/no whether to barrier each step of CNOT gates- 반환 형식
Tuple
[QuantumCircuit
,Dict
]- 반환값
A GHZ Circuit and its initial GHZ layout
-
get_ghz_mqc
(n, delta, full_measurement=True)[소스]¶ This function creates an MQC circuit with n qubits, where the middle phase rotation around the z axis is by delta
- 매개변수
n (
int
) – number of qubitsdelta (
float
) – the rotation of the middle phase around the z axisfull_measurement (
bool
) – Whether to append full measurement, or only on the first qubit
- 반환 형식
Tuple
[QuantumCircuit
,Dict
]- 반환값
The MQC circuit and the initial GHZ layout
-
get_ghz_mqc_para
(n, full_measurement=True)[소스]¶ Get a parametrized MQC circuit. Remember that get_counts() method accepts an index now, not a circuit
- 매개변수
n (
int
) – number of qubitsfull_measurement (
bool
) – Whether to append full measurement, or only on the first qubit
- 반환 형식
Tuple
[QuantumCircuit
,Parameter
,Dict
]- 반환값
The MQC circuit, its delta parameter, and the initial GHZ layout
-
get_ghz_po
(n, delta)[소스]¶ This function creates an Parity Oscillation circuit with n qubits, where the middle superposition rotation around the x and y axes is by delta
- 매개변수
n (
int
) – number of qubitsdelta (
float
) – the middle superposition rotation
- 반환 형식
Tuple
[QuantumCircuit
,Dict
]- 반환값
The Parity Oscillation circuit and the initial GHZ layout
-
get_ghz_po_para
(n)[소스]¶ Get a parametrized PO circuit. Remember that get_counts() method accepts an index now, not a circuit. The two phase parameters are a quirk of the Parameter module
- 매개변수
n (
int
) – number of qubits- 반환 형식
Tuple
[QuantumCircuit
,List
[Parameter
],Dict
]- 반환값
- A parity oscillation circuit, its Delta/minus-delta parameters,
and the initial ghz layout
-
get_ghz_simple
(n, full_measurement=True)[소스]¶ Get simple GHZ circuit with measurement
- 매개변수
n (
int
) – number of qubitsfull_measurement (
bool
) – Whether to append full measurement, or only on the first qubit
- 반환 형식
Tuple
[QuantumCircuit
,QuantumRegister
,Dict
]- 반환값
A GHZ Circuit, its measurement circle quantum register and the initial GHZ layout
-
get_measurement_circ
(n, qregname, cregname, full_measurement=True)[소스]¶ Creates a measurement circuit that can toggle between measuring the control qubit or measuring all qubits. The default is measurement of all qubits.
- 매개변수
n (
int
) – number of qubitsqregname (
str
) – name of the qubit registercregname (
str
) – name of the classical registerfull_measurement (
bool
) – Whether to append full measurement, or only on the first qubit
- 반환 형식
QuantumCircuit
- 반환값
The measurement circuit
-
get_tier_dict
()[소스]¶ Take the nodes of the BConfig to create a Tier Dictionary, where keys are the steps in the process, and the values are the connections following pattern of: [controlled qubit, NOT qubit]. Thus the backend’s GHZ state is parallelized.
- 반환 형식
Dict
- 반환값
- Tier dictionary - [step in process, control-target connection]
Facilitates parallelized GHZ circuits
-