forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved Clifford synthesis method (Qiskit#5779)
* add clifford greedy compiler * add documentation and handle parameter names * add spaces * remove unnecessary imports * updates following review * minor edits * add release notes * empty commit to rerun CI * empty commit to rerun CI * Update qiskit/quantum_info/synthesis/clifford_decompose.py Co-authored-by: Luciano Bello <bel@zurich.ibm.com> Co-authored-by: Christopher J. Wood <cjwood@us.ibm.com>
- Loading branch information
1 parent
7c7a956
commit b549e01
Showing
3 changed files
with
335 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
releasenotes/notes/improve-clifford-synthesis-6bddeefa78a2cac1.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
features: | ||
- | | ||
The :meth:`~Clifford.to_circuit` method now uses a non-optimal | ||
greedy compilation routine for Clifford elements synthesis, by Bravyi et. al., | ||
which typically yields better CX cost compared to the previousely | ||
used Aaronson-Gottesman method (for more than two qubits). | ||
This is now the default method for Clifford circuit synthesis of more | ||
than three qubits, unless another method is specified. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters