CDKMRippleCarryAdder#
- class qiskit.circuit.library.CDKMRippleCarryAdder(num_state_qubits, kind='full', name='CDKMRippleCarryAdder')[cΓ³digo fonte]#
Bases:
Adder
A ripple-carry circuit to perform in-place addition on two qubit registers.
As an example, a ripple-carry adder circuit that performs addition on two 3-qubit sized registers with a carry-in bit (
kind="full"
) is as follows:ββββββββ ββββββββ cin_0: β€2 βββββββββββββββββββββββββββββββββββββββ€2 β β βββββββββ βββββββββ β a_0: β€0 ββ€2 βββββββββββββββββββββββ€2 ββ€0 β β ββ βββββββββ βββββββββ ββ β a_1: β€ MAJ ββ€0 ββ€2 βββββββ€2 ββ€0 ββ€ UMA β β ββ ββ β β ββ ββ β a_2: β€ ββ€ MAJ ββ€0 ββββ βββ€0 ββ€ UMA ββ€ β β ββ ββ β β β ββ ββ β b_0: β€1 ββ€ ββ€ MAJ ββββΌβββ€ UMA ββ€ ββ€1 β βββββββββ ββ β β β ββ βββββββββ b_1: βββββββββ€1 ββ€ ββββΌβββ€ ββ€1 βββββββββ βββββββββ β β β βββββββββ b_2: βββββββββββββββββ€1 ββββΌβββ€1 βββββββββββββββββ βββββββββββ΄ββββββββββ cout_0: βββββββββββββββββββββββββ€ X βββββββββββββββββββββββββ βββββ
Here MAJ and UMA gates correspond to the gates introduced in [1]. Note that in this implementation the input register qubits are ordered as all qubits from the first input register, followed by all qubits from the second input register.
Two different kinds of adders are supported. By setting the
kind
argument, you can also choose a half-adder, which doesnβt have a carry-in, and a fixed-sized-adder, which has neither carry-in nor carry-out, and thus acts on fixed register sizes. Unlike the full-adder, these circuits need one additional helper qubit.The circuit diagram for the fixed-point adder (
kind="fixed"
) on 3-qubit sized inputs isββββββββββββββββ ββββββββββββββββ a_0: β€0 ββ€2 ββββββββββββββββββ€2 ββ€0 β β ββ ββββββββββββββββββ ββ β a_1: β€ ββ€0 ββ€2 ββ€2 ββ€0 ββ€ β β ββ ββ ββ ββ ββ β a_2: β€ ββ€ MAJ ββ€0 ββ€0 ββ€ UMA ββ€ β β ββ ββ ββ ββ ββ β b_0: β€1 MAJ ββ€ ββ€ MAJ ββ€ UMA ββ€ ββ€1 UMA β β ββ ββ ββ ββ ββ β b_1: β€ ββ€1 ββ€ ββ€ ββ€1 ββ€ β β ββββββββββ ββ ββββββββββ β b_2: β€ ββββββββββ€1 ββ€1 ββββββββββ€ β β β ββββββββββββββββ β β help_0: β€2 ββββββββββββββββββββββββββββββββββ€2 β ββββββββ ββββββββ
It has one less qubit than the full-adder since it doesnβt have the carry-out, but uses a helper qubit instead of the carry-in, so it only has one less qubit, not two.
References:
[1] Cuccaro et al., A new quantum ripple-carry addition circuit, 2004. arXiv:quant-ph/0410184
[2] Vedral et al., Quantum Networks for Elementary Arithmetic Operations, 1995. arXiv:quant-ph/9511018
- ParΓ’metros:
num_state_qubits (int) β The number of qubits in either input register for state \(|a\rangle\) or \(|b\rangle\). The two input registers must have the same number of qubits.
kind (str) β The kind of adder, can be
'full'
for a full adder,'half'
for a half adder, or'fixed'
for a fixed-sized adder. A full adder includes both carry-in and carry-out, a half only carry-out, and a fixed-sized adder neither carry-in nor carry-out.name (str) β The name of the circuit object.
- Levanta:
ValueError β If
num_state_qubits
is lower than 1.
Attributes
- ancillas#
Returns a list of ancilla bits in the order that the registers were added.
- calibrations#
Return calibration dictionary.
The custom pulse definition of a given gate is of the form
{'gate_name': {(qubits, params): schedule}}
- clbits#
Returns a list of classical bits in the order that the registers were added.
- data#
Return the circuit data (instructions and context).
- Retorno:
a list-like object containing the
CircuitInstruction
s for each instruction.- Tipo de retorno:
QuantumCircuitData
- extension_lib = 'include "qelib1.inc";'#
- global_phase#
Return the global phase of the circuit in radians.
- header = 'OPENQASM 2.0;'#
- instances = 168#
- layout#
Return any associated layout information about the circuit
This attribute contains an optional
TranspileLayout
object. This is typically set on the output fromtranspile()
orPassManager.run()
to retain information about the permutations caused on the input circuit by transpilation.There are two types of permutations caused by the
transpile()
function, an initial layout which permutes the qubits based on the selected physical qubits on theTarget
, and a final layout which is an output permutation caused bySwapGate
s inserted during routing.
- metadata#
The user provided metadata associated with the circuit.
The metadata for the circuit is a user provided
dict
of metadata for the circuit. It will not be used to influence the execution or operation of the circuit, but it is expected to be passed between all transforms of the circuit (ie transpilation) and that providers will associate any circuit metadata with the results it returns from execution of that circuit.
- num_ancillas#
Return the number of ancilla qubits.
- num_clbits#
Return number of classical bits.
- num_parameters#
The number of parameter objects in the circuit.
- num_qubits#
Return number of qubits.
- num_state_qubits#
The number of state qubits, i.e. the number of bits in each input register.
- Retorno:
The number of state qubits.
- op_start_times#
Return a list of operation start times.
This attribute is enabled once one of scheduling analysis passes runs on the quantum circuit.
- Retorno:
List of integers representing instruction start times. The index corresponds to the index of instruction in
QuantumCircuit.data
.- Levanta:
AttributeError β When circuit is not scheduled.
- parameters#
The parameters defined in the circuit.
This attribute returns the
Parameter
objects in the circuit sorted alphabetically. Note that parameters instantiated with aParameterVector
are still sorted numerically.Examples
The snippet below shows that insertion order of parameters does not matter.
>>> from qiskit.circuit import QuantumCircuit, Parameter >>> a, b, elephant = Parameter("a"), Parameter("b"), Parameter("elephant") >>> circuit = QuantumCircuit(1) >>> circuit.rx(b, 0) >>> circuit.rz(elephant, 0) >>> circuit.ry(a, 0) >>> circuit.parameters # sorted alphabetically! ParameterView([Parameter(a), Parameter(b), Parameter(elephant)])
Bear in mind that alphabetical sorting might be unintuitive when it comes to numbers. The literal Β«10Β» comes before Β«2Β» in strict alphabetical sorting.
>>> from qiskit.circuit import QuantumCircuit, Parameter >>> angles = [Parameter("angle_1"), Parameter("angle_2"), Parameter("angle_10")] >>> circuit = QuantumCircuit(1) >>> circuit.u(*angles, 0) >>> circuit.draw() βββββββββββββββββββββββββββββββ q: β€ U(angle_1,angle_2,angle_10) β βββββββββββββββββββββββββββββββ >>> circuit.parameters ParameterView([Parameter(angle_1), Parameter(angle_10), Parameter(angle_2)])
To respect numerical sorting, a
ParameterVector
can be used.>>> from qiskit.circuit import QuantumCircuit, Parameter, ParameterVector >>> x = ParameterVector("x", 12) >>> circuit = QuantumCircuit(1) >>> for x_i in x: ... circuit.rx(x_i, 0) >>> circuit.parameters ParameterView([ ParameterVectorElement(x[0]), ParameterVectorElement(x[1]), ParameterVectorElement(x[2]), ParameterVectorElement(x[3]), ..., ParameterVectorElement(x[11]) ])
- Retorno:
The sorted
Parameter
objects in the circuit.
- prefix = 'circuit'#
- qubits#
Returns a list of quantum bits in the order that the registers were added.