Circuit Synthesis
qiskit.synthesis
Evolution Synthesis
EvolutionSynthesis () | Interface for evolution synthesis algorithms. |
ProductFormula (order[, reps, ...]) | Product formula base class for the decomposition of non-commuting operator exponentials. |
LieTrotter ([reps, insert_barriers, ...]) | The Lie-Trotter product formula. |
SuzukiTrotter ([order, reps, ...]) | The (higher order) Suzuki-Trotter product formula. |
MatrixExponential () | Exact operator evolution via matrix exponentiation and unitary synthesis. |
QDrift ([reps, insert_barriers, ...]) | The QDrift Trotterization method, which selects each each term in the Trotterization randomly, with a probability proportional to its weight. |
Linear Function Synthesis
synth_cnot_count_full_pmh
qiskit.synthesis.synth_cnot_count_full_pmh(state, section_size=2)
Synthesize linear reversible circuits for all-to-all architecture using Patel, Markov and Hayes method.
This function is an implementation of the Patel, Markov and Hayes algorithm from [1] for optimal synthesis of linear reversible circuits for all-to-all architecture, as specified by an matrix.
Parameters
- state (list[list[bool]] | np.ndarray[bool]) – boolean invertible matrix, describing the state of the input circuit
- section_size (int) – The size of each section, used in the Patel–Markov–Hayes algorithm [1].
section_size
must be a factor of the number of qubits.
Returns
a CX-only circuit implementing the linear transformation.
Return type
Raises
QiskitError – when variable state
isn’t of type numpy.ndarray
References
- Patel, Ketan N., Igor L. Markov, and John P. Hayes, Optimal synthesis of linear reversible circuits, Quantum Information & Computation 8.3 (2008): 282-294. arXiv:quant-ph/0302002 [quant-ph]
synth_cnot_depth_line_kms
qiskit.synthesis.synth_cnot_depth_line_kms(mat)
Synthesize linear reversible circuit for linear nearest-neighbor architectures using Kutin, Moulton, Smithline method.
Synthesis algorithm for linear reversible circuits from [1], section 7. This algorithm synthesizes any linear reversible circuit of qubits over a linear nearest-neighbor architecture using CX gates with depth at most .
Parameters
mat (ndarray[bool]) – A boolean invertible matrix.
Returns
The synthesized quantum circuit.
Raises
QiskitError – if mat
is not invertible.
Return type
References
- Kutin, S., Moulton, D. P., Smithline, L., Computation at a distance, Chicago J. Theor. Comput. Sci., vol. 2007, (2007), arXiv:quant-ph/0701194
Linear-Phase Synthesis
synth_cz_depth_line_mr
qiskit.synthesis.synth_cz_depth_line_mr(mat)
Synthesis of a CZ circuit for linear nearest neighbour (LNN) connectivity, based on Maslov and Roetteler.
Note that this method reverts the order of qubits in the circuit, and returns a circuit containing CXGate
s and phase gates (SGate
, SdgGate
or ZGate
).
Parameters
mat (ndarray) – an upper-diagonal matrix representing the CZ circuit. mat[i][j]=1 for i<j
represents a cz(i,j)
gate
Returns
A circuit implementation of the CZ circuit of depth for LNN connectivity.
Return type
References
- Dmitri Maslov, Martin Roetteler, Shorter stabilizer circuits via Bruhat decomposition and quantum circuit transformations, arXiv:1705.09176.
synth_cx_cz_depth_line_my
qiskit.synthesis.synth_cx_cz_depth_line_my(mat_x, mat_z)
Joint synthesis of a -CZ-CX- circuit for linear nearest neighbour (LNN) connectivity, with 2-qubit depth at most 5n, based on Maslov and Yang. This method computes the CZ circuit inside the CX circuit via phase gate insertions.
Parameters
- mat_z (ndarray) – a boolean symmetric matrix representing a CZ circuit.
mat_z[i][j]=1
represents acz(i,j)
gate - mat_x (ndarray) – a boolean invertible matrix representing a CX circuit.
Returns
A circuit implementation of a CX circuit following a CZ circuit, denoted as a -CZ-CX- circuit,in two-qubit depth at most 5n
, for LNN connectivity.
Return type
References
- Kutin, S., Moulton, D. P., Smithline, L., Computation at a distance, Chicago J. Theor. Comput. Sci., vol. 2007, (2007), arXiv:quant-ph/0701194
- Dmitri Maslov, Willers Yang, CNOT circuits need little help to implement arbitrary Hadamard-free Clifford transformations they generate, arXiv:2210.16195.
synth_cnot_phase_aam
qiskit.synthesis.synth_cnot_phase_aam(cnots, angles, section_size=2)
This function is an implementation of the GraySynth algorithm of Amy, Azimadeh and Mosca.
GraySynth is a heuristic algorithm from [1] for synthesizing small parity networks. It is inspired by Gray codes. Given a set of binary strings (called cnots
bellow), the algorithm synthesizes a parity network for by repeatedly choosing an index to expand and then effectively recursing on the co-factors and , consisting of the strings , with or respectively. As a subset is recursively expanded, cx
gates are applied so that a designated target bit contains the (partial) parity where if and only if for all . If contains a single element , then , and the target bit contains the value as desired.
Notably, rather than uncomputing this sequence of cx
(CNOT) gates when a subset is finished being synthesized, the algorithm maintains the invariant that the remaining parities to be computed are expressed over the current state of bits. This allows the algorithm to avoid the ‘backtracking’ inherent in uncomputing-based methods.
The algorithm is described in detail in section 4 of [1].
Parameters
-
A matrix whose columns are the parities to be synthesized e.g.:
[[0, 1, 1, 1, 1, 1], [1, 0, 0, 1, 1, 1], [1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 1, 0]]
corresponds to:
x1^x2 + x0 + x0^x3 + x0^x1^x2 + x0^x1^x3 + x0^x1
-
angles (list[str]) – A list containing all the phase-shift gates which are to be applied, in the same order as in
cnots
. A number is interpreted as the angle of , otherwise the elements have to be't'
,'tdg'
,'s'
,'sdg'
or'z'
. -
section_size (int) – The size of every section in the Patel–Markov–Hayes algorithm.
section_size
must be a factor of the number of qubits.
Returns
The decomposed quantum circuit.
Raises
QiskitError – when dimensions of cnots
and angles
don’t align.
Return type
References
- Matthew Amy, Parsiad Azimzadeh, and Michele Mosca. On the controlled-NOT complexity of controlled-NOT–phase circuits., Quantum Science and Technology 4.1 (2018): 015002. arXiv:1712.01859
Permutation Synthesis
synth_permutation_depth_lnn_kms
qiskit.synthesis.synth_permutation_depth_lnn_kms(pattern)
Synthesize a permutation circuit for a linear nearest-neighbor architecture using the Kutin, Moulton, Smithline method.
This is the permutation synthesis algorithm from [1], section 6. It synthesizes any permutation of n qubits over linear nearest-neighbor architecture using SWAP gates with depth at most and size at most (where both depth and size are measured with respect to SWAPs).
Parameters
pattern (list[int] | np.ndarray[int]) – Permutation pattern, describing which qubits occupy the positions 0, 1, 2, etc. after applying the permutation. That is, pattern[k] = m
when the permutation maps qubit m
to position k
. As an example, the pattern [2, 4, 3, 0, 1]
means that qubit 2
goes to position 0
, qubit 4
goes to position 1
, etc.
Returns
The synthesized quantum circuit.
Return type
References
- Samuel A. Kutin, David Petrie Moulton and Lawren M. Smithline. Computation at a distance., arXiv:quant-ph/0701194v1
synth_permutation_basic
qiskit.synthesis.synth_permutation_basic(pattern)
Synthesize a permutation circuit for a fully-connected architecture using sorting.
More precisely, if the input permutation is a cycle of length m
, then this creates a quantum circuit with m-1
SWAPs (and of depth m-1
); if the input permutation consists of several disjoint cycles, then each cycle is essentially treated independently.
Parameters
pattern (list[int] | np.ndarray[int]) – Permutation pattern, describing which qubits occupy the positions 0, 1, 2, etc. after applying the permutation. That is, pattern[k] = m
when the permutation maps qubit m
to position k
. As an example, the pattern [2, 4, 3, 0, 1]
means that qubit 2
goes to position 0
, qubit 4
goes to position 1
, etc.
Returns
The synthesized quantum circuit.
Return type
synth_permutation_acg
qiskit.synthesis.synth_permutation_acg(pattern)
Synthesize a permutation circuit for a fully-connected architecture using the Alon, Chung, Graham method.
This produces a quantum circuit of depth 2 (measured in the number of SWAPs).
This implementation is based on the Proposition 4.1 in reference [1] with the detailed proof given in Theorem 2 in reference [2]
Parameters
pattern (list[int] | np.ndarray[int]) – Permutation pattern, describing which qubits occupy the positions 0, 1, 2, etc. after applying the permutation. That is, pattern[k] = m
when the permutation maps qubit m
to position k
. As an example, the pattern [2, 4, 3, 0, 1]
means that qubit 2
goes to position 0
, qubit 4
goes to position 1
, etc.
Returns
The synthesized quantum circuit.
Return type
References
- N. Alon, F. R. K. Chung, and R. L. Graham. Routing Permutations on Graphs Via Matchings., Proceedings of the Twenty-Fifth Annual ACM Symposium on Theory of Computing(1993). Pages 583–591. (Extended abstract) 10.1145/167088.167239
- N. Alon, F. R. K. Chung, and R. L. Graham. Routing Permutations on Graphs Via Matchings., (Full paper)
Clifford Synthesis
synth_clifford_full
qiskit.synthesis.synth_clifford_full(clifford, method=None)
Decompose a Clifford
operator into a QuantumCircuit
.
For qubits this is based on optimal CX-cost decomposition from reference [1]. For qubits this is done using the general non-optimal greedy compilation routine from reference [3], which typically yields better CX cost compared to the AG method in [2].
Parameters
- clifford (Clifford) – A Clifford operator.
- method (str | None) – Optional, a synthesis method (
'AG'
or'greedy'
). If set this overrides optimal decomposition for qubits.
Returns
A circuit implementation of the Clifford.
Return type
References
- S. Bravyi, D. Maslov, Hadamard-free circuits expose the structure of the Clifford group, arXiv:2003.09412 [quant-ph]
- S. Aaronson, D. Gottesman, Improved Simulation of Stabilizer Circuits, Phys. Rev. A 70, 052328 (2004). arXiv:quant-ph/0406196
- Sergey Bravyi, Shaohan Hu, Dmitri Maslov, Ruslan Shaydulin, Clifford Circuit Optimization with Templates and Symbolic Pauli Gates, arXiv:2105.02291 [quant-ph]
synth_clifford_ag
qiskit.synthesis.synth_clifford_ag(clifford)
Decompose a Clifford
operator into a QuantumCircuit
based on Aaronson-Gottesman method [1].
Parameters
clifford (Clifford) – A Clifford operator.
Returns
A circuit implementation of the Clifford.
Return type
References
- S. Aaronson, D. Gottesman, Improved Simulation of Stabilizer Circuits, Phys. Rev. A 70, 052328 (2004). arXiv:quant-ph/0406196
synth_clifford_bm
qiskit.synthesis.synth_clifford_bm(clifford)
Optimal CX-cost decomposition of a Clifford
operator on 2 qubits or 3 qubits into a QuantumCircuit
based on the Bravyi-Maslov method [1].
Parameters
clifford (Clifford) – A Clifford operator.
Returns
A circuit implementation of the Clifford.
Raises
QiskitError – if Clifford is on more than 3 qubits.
Return type
References
- S. Bravyi, D. Maslov, Hadamard-free circuits expose the structure of the Clifford group, arXiv:2003.09412 [quant-ph]
synth_clifford_greedy
qiskit.synthesis.synth_clifford_greedy(clifford)
Decompose a Clifford
operator into a QuantumCircuit
based on the greedy Clifford compiler that is described in Appendix A of Bravyi, Hu, Maslov and Shaydulin [1].
This method typically yields better CX cost compared to the Aaronson-Gottesman method.
Note that this function only implements the greedy Clifford compiler from Appendix A of [1], and not the templates and symbolic Pauli gates optimizations that are mentioned in the same paper.
Parameters
clifford (Clifford) – A Clifford operator.
Returns
A circuit implementation of the Clifford.
Raises
QiskitError – if symplectic Gaussian elimination fails.
Return type
References
- Sergey Bravyi, Shaohan Hu, Dmitri Maslov, Ruslan Shaydulin, Clifford Circuit Optimization with Templates and Symbolic Pauli Gates, arXiv:2105.02291 [quant-ph]
synth_clifford_layers
qiskit.synthesis.synth_clifford_layers(cliff, cx_synth_func=<function _default_cx_synth_func>, cz_synth_func=<function _default_cz_synth_func>, cx_cz_synth_func=None, cz_func_reverse_qubits=False, validate=False)
Synthesis of a Clifford
into layers, it provides a similar decomposition to the synthesis described in Lemma 8 of Bravyi and Maslov [1].
For example, a 5-qubit Clifford circuit is decomposed into the following layers:
┌─────┐┌─────┐┌────────┐┌─────┐┌─────┐┌─────┐┌─────┐┌────────┐
q_0: ┤0 ├┤0 ├┤0 ├┤0 ├┤0 ├┤0 ├┤0 ├┤0 ├
│ ││ ││ ││ ││ ││ ││ ││ │
q_1: ┤1 ├┤1 ├┤1 ├┤1 ├┤1 ├┤1 ├┤1 ├┤1 ├
│ ││ ││ ││ ││ ││ ││ ││ │
q_2: ┤2 S2 ├┤2 CZ ├┤2 CX_dg ├┤2 H2 ├┤2 S1 ├┤2 CZ ├┤2 H1 ├┤2 Pauli ├
│ ││ ││ ││ ││ ││ ││ ││ │
q_3: ┤3 ├┤3 ├┤3 ├┤3 ├┤3 ├┤3 ├┤3 ├┤3 ├
│ ││ ││ ││ ││ ││ ││ ││ │
q_4: ┤4 ├┤4 ├┤4 ├┤4 ├┤4 ├┤4 ├┤4 ├┤4 ├
└─────┘└─────┘└────────┘└─────┘└─────┘└─────┘└─────┘└────────┘
This decomposition is for the default cz_synth_func
and cx_synth_func
functions, with other functions one may see slightly different decomposition.
Parameters
- cliff (Clifford) – A Clifford operator.
- cx_synth_func (Callable[[np.ndarray], QuantumCircuit]) – A function to decompose the CX sub-circuit. It gets as input a boolean invertible matrix, and outputs a
QuantumCircuit
. - cz_synth_func (Callable[[np.ndarray], QuantumCircuit]) – A function to decompose the CZ sub-circuit. It gets as input a boolean symmetric matrix, and outputs a
QuantumCircuit
. - cx_cz_synth_func (Callable) – optional, a function to decompose both sub-circuits CZ and CX.
- validate (Boolean) – if True, validates the synthesis process.
- cz_func_reverse_qubits (Boolean) – True only if
cz_synth_func
issynth_cz_depth_line_mr()
, since this function returns a circuit that reverts the order of qubits.
Returns
A circuit implementation of the Clifford.
Return type
References
- S. Bravyi, D. Maslov, Hadamard-free circuits expose the structure of the Clifford group, arXiv:2003.09412 [quant-ph]
synth_clifford_depth_lnn
qiskit.synthesis.synth_clifford_depth_lnn(cliff)
Synthesis of a Clifford
into layers for linear-nearest neighbour connectivity.
The depth of the synthesized n-qubit circuit is bounded by , which is not optimal. It should be replaced by a better algorithm that provides depth bounded by [3].
Parameters
cliff (Clifford) – a Clifford operator.
Returns
a circuit implementation of the Clifford.
Return type
References
- S. Bravyi, D. Maslov, Hadamard-free circuits expose the structure of the Clifford group, arXiv:2003.09412 [quant-ph]
- Dmitri Maslov, Martin Roetteler, Shorter stabilizer circuits via Bruhat decomposition and quantum circuit transformations, arXiv:1705.09176.
- Dmitri Maslov, Willers Yang, CNOT circuits need little help to implement arbitrary Hadamard-free Clifford transformations they generate, arXiv:2210.16195.
CNOTDihedral Synthesis
synth_cnotdihedral_full
qiskit.synthesis.synth_cnotdihedral_full(elem)
Decompose a CNOTDihedral
element into a QuantumCircuit
.
For qubits this is based on optimal CX-cost decomposition from reference [1]. For qubits this is done using the general non-optimal compilation routine from reference [2].
Parameters
elem (CNOTDihedral) – A CNOTDihedral
element.
Returns
A circuit implementation of the CNOTDihedral
element.
Return type
References
- Shelly Garion and Andrew W. Cross, Synthesis of CNOT-Dihedral circuits with optimal number of two qubit gates, Quantum 4(369), 2020
- Andrew W. Cross, Easwar Magesan, Lev S. Bishop, John A. Smolin and Jay M. Gambetta, Scalable randomised benchmarking of non-Clifford gates, npj Quantum Inf 2, 16012 (2016).
synth_cnotdihedral_two_qubits
qiskit.synthesis.synth_cnotdihedral_two_qubits(elem)
Decompose a CNOTDihedral
element on a single qubit and two qubits into a QuantumCircuit
. This decomposition has an optimal number of CXGate
s.
Parameters
elem (CNOTDihedral) – A CNOTDihedral
element.
Returns
A circuit implementation of the CNOTDihedral
element.
Raises
QiskitError – if the element in not 1-qubit or 2-qubit CNOTDihedral
.
Return type
References
- Shelly Garion and Andrew W. Cross, On the structure of the CNOT-Dihedral group, arXiv:2006.12042 [quant-ph]
synth_cnotdihedral_general
qiskit.synthesis.synth_cnotdihedral_general(elem)
Decompose a CNOTDihedral
element into a QuantumCircuit
.
Decompose a general CNOTDihedral
elements. The number of CX gates is not necessarily optimal. For a decomposition of a 1-qubit or 2-qubit element, call synth_cnotdihedral_two_qubits()
.
Parameters
elem (CNOTDihedral) – A CNOTDihedral
element.
Returns
A circuit implementation of the CNOTDihedral
element.
Raises
QiskitError – if the element could not be decomposed into a circuit.
Return type
References
- Andrew W. Cross, Easwar Magesan, Lev S. Bishop, John A. Smolin and Jay M. Gambetta, Scalable randomised benchmarking of non-Clifford gates, npj Quantum Inf 2, 16012 (2016).
Stabilizer State Synthesis
synth_stabilizer_layers
qiskit.synthesis.synth_stabilizer_layers(stab, cz_synth_func=<function _default_cz_synth_func>, cz_func_reverse_qubits=False, validate=False)
Synthesis of a stabilizer state into layers.
It provides a similar decomposition to the synthesis described in Lemma 8 of reference [1], without the initial Hadamard-free sub-circuit which do not affect the stabilizer state.
For example, a 5-qubit stabilizer state is decomposed into the following layers:
┌─────┐┌─────┐┌─────┐┌─────┐┌────────┐
q_0: ┤0 ├┤0 ├┤0 ├┤0 ├┤0 ├
│ ││ ││ ││ ││ │
q_1: ┤1 ├┤1 ├┤1 ├┤1 ├┤1 ├
│ ││ ││ ││ ││ │
q_2: ┤2 H2 ├┤2 S1 ├┤2 CZ ├┤2 H1 ├┤2 Pauli ├
│ ││ ││ ││ ││ │
q_3: ┤3 ├┤3 ├┤3 ├┤3 ├┤3 ├
│ ││ ││ ││ ││ │
q_4: ┤4 ├┤4 ├┤4 ├┤4 ├┤4 ├
└─────┘└─────┘└─────┘└─────┘└────────┘
Parameters
- stab (StabilizerState) – A stabilizer state.
- cz_synth_func (Callable[[ndarray], QuantumCircuit]) – A function to decompose the CZ sub-circuit. It gets as input a boolean symmetric matrix, and outputs a
QuantumCircuit
. - cz_func_reverse_qubits (bool) –
True
only ifcz_synth_func
issynth_cz_depth_line_mr()
, since this function returns a circuit that reverts the order of qubits. - validate (bool) – If
True
, validates the synthesis process.
Returns
A circuit implementation of the stabilizer state.
Raises
QiskitError – if the input is not a StabilizerState
.
Return type
References
- S. Bravyi, D. Maslov, Hadamard-free circuits expose the structure of the Clifford group, arXiv:2003.09412 [quant-ph]
synth_stabilizer_depth_lnn
qiskit.synthesis.synth_stabilizer_depth_lnn(stab)
Synthesis of an n-qubit stabilizer state for linear-nearest neighbour connectivity, in 2-qubit depth and two distinct CX layers, using CXGate
s and phase gates (SGate
, SdgGate
or ZGate
).
Parameters
stab (StabilizerState) – A stabilizer state.
Returns
A circuit implementation of the stabilizer state.
Return type
References
- S. Bravyi, D. Maslov, Hadamard-free circuits expose the structure of the Clifford group, arXiv:2003.09412 [quant-ph]
- Dmitri Maslov, Martin Roetteler, Shorter stabilizer circuits via Bruhat decomposition and quantum circuit transformations, arXiv:1705.09176.
synth_circuit_from_stabilizers
qiskit.synthesis.synth_circuit_from_stabilizers(stabilizers, allow_redundant=False, allow_underconstrained=False, invert=False)
Synthesis of a circuit that generates a state stabilized by the stabilizers using Gaussian elimination with Clifford gates. If the stabilizers are underconstrained, and allow_underconstrained
is True
, the circuit will output one of the states stabilized by the stabilizers. Based on stim implementation.
Parameters
- stabilizers (Collection[str]) – List of stabilizer strings
- allow_redundant (bool) – Allow redundant stabilizers (i.e., some stabilizers can be products of the others)
- allow_underconstrained (bool) – Allow underconstrained set of stabilizers (i.e., the stabilizers do not specify a unique state)
- invert (bool) – Return inverse circuit
Returns
A circuit that generates a state stabilized by stabilizers
.
Raises
QiskitError – if the stabilizers are invalid, do not commute, or contradict each other, if the list is underconstrained and allow_underconstrained
is False
, or if the list is redundant and allow_redundant
is False
.
Return type
References
Discrete Basis Synthesis
SolovayKitaevDecomposition ([...]) | The Solovay Kitaev discrete decomposition algorithm. |
generate_basic_approximations
qiskit.synthesis.generate_basic_approximations(basis_gates, depth, filename=None)
Generates a list of GateSequence
s with the gates in basis_gates
.
Parameters
- basis_gates (list[str |Gate]) – The gates from which to create the sequences of gates.
- depth (int) – The maximum depth of the approximations.
- filename (str | None) – If provided, the basic approximations are stored in this file.
Returns
List of GateSequence
s using the gates in basis_gates
.
Raises
ValueError – If basis_gates
contains an invalid gate identifier.
Return type
list[GateSequence]
Basis Change Synthesis
synth_qft_line
qiskit.synthesis.synth_qft_line(num_qubits, do_swaps=True, approximation_degree=0)
Synthesis of a QFT circuit for a linear nearest neighbor connectivity. Based on Fig 2.b in Fowler et al. [1].
Note that this method reverts the order of qubits in the circuit, compared to the original QFT
code. Hence, the default value of the do_swaps
parameter is True
since it produces a circuit with fewer CX gates.
Parameters
- num_qubits (int) – The number of qubits on which the QFT acts.
- approximation_degree (int) – The degree of approximation (0 for no approximation).
- do_swaps (bool) – Whether to include the final swaps in the QFT.
Returns
A circuit implementation of the QFT circuit.
Return type
References
- A. G. Fowler, S. J. Devitt, and L. C. L. Hollenberg, Implementation of Shor’s algorithm on a linear nearest neighbour qubit array, Quantum Info. Comput. 4, 4 (July 2004), 237–251. arXiv:quant-ph/0402196 [quant-ph]
Unitary Synthesis
Decomposition of general unitary matrices for any number of qubits.
qs_decomposition
qiskit.synthesis.qs_decomposition(mat, opt_a1=True, opt_a2=True, decomposer_1q=None, decomposer_2q=None, *, _depth=0)
Decomposes a unitary matrix into one and two qubit gates using Quantum Shannon Decomposition,
This decomposition is described in Shende et al. [1].
┌───┐ ┌───┐ ┌───┐ ┌───┐
─┤ ├─ ───────┤ Rz├─────┤ Ry├─────┤ Rz├─────
│ │ ≃ ┌───┐└─┬─┘┌───┐└─┬─┘┌───┐└─┬─┘┌───┐
/─┤ ├─ /─┤ ├──□──┤ ├──□──┤ ├──□──┤ ├
└───┘ └───┘ └───┘ └───┘ └───┘
The number of CXGate
s generated with the decomposition without optimizations is:
If opt_a1 = True
, the default, the CX count is reduced by:
If opt_a2 = True
, the default, the CX count is reduced by:
Parameters
- mat (np.ndarray) – unitary matrix to decompose
- opt_a1 (bool) – whether to try optimization A.1 from Shende et al. [1]. This should eliminate 1
cx
per call. IfTrue
,CZGate
s are left in the output. If desired these can be further decomposed toCXGate
s. - opt_a2 (bool) – whether to try optimization A.2 from Shende et al. [1]. This decomposes two qubit unitaries into a diagonal gate and a two cx unitary and reduces overall cx count by .
- decomposer_1q (Callable[[np.ndarray], QuantumCircuit] | None) – optional 1Q decomposer. If None, uses
OneQubitEulerDecomposer
. - decomposer_2q (Callable[[np.ndarray], QuantumCircuit] | None) – optional 2Q decomposer. If None, uses
TwoQubitBasisDecomposer
.
Returns
Decomposed quantum circuit.
Return type
References
- Shende, Bullock, Markov, Synthesis of Quantum Logic Circuits, arXiv:0406176 [quant-ph]
The Approximate Quantum Compiler is available here:
qiskit.synthesis.unitary.aqc | Approximate Quantum Compiler (qiskit.synthesis.unitary.aqc) |
One-Qubit Synthesis
OneQubitEulerDecomposer ([basis, use_dag]) | A class for decomposing 1-qubit unitaries into Euler angle rotations. |
Two-Qubit Synthesis
TwoQubitBasisDecomposer (gate[, ...]) | A class for decomposing 2-qubit unitaries into minimal number of uses of a 2-qubit basis gate. |
XXDecomposer ([basis_fidelity, euler_basis, ...]) | A class for optimal decomposition of 2-qubit unitaries into 2-qubit basis gates of XX type (i.e., each locally equivalent to for a possibly varying ). |
TwoQubitWeylDecomposition (unitary_matrix, *) | Two-qubit Weyl decomposition. |
two_qubit_cnot_decompose
qiskit.synthesis.two_qubit_cnot_decompose(*args, **kwargs)
This is an instance of TwoQubitBasisDecomposer
that always uses cx
as the KAK gate for the basis decomposition. You can use this function as a quick access to cx
-based 2-qubit decompositions.
Parameters
- unitary (Operator or np.ndarray) – The 4x4 unitary to synthesize.
- basis_fidelity (float or None) – If given the assumed fidelity for applications of
CXGate
. - approximate (bool) – If
True
approximate ifbasis_fidelity
is less than 1.0.
Returns
The synthesized circuit of the input unitary.
Return type