-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
releasenotes/notes/plugable-rb-clifford-synthesis-0e66c62fa3088fba.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,20 @@ | ||
--- | ||
features: | ||
- | | ||
Added a new experiment option ``clifford_synthesis_method`` to RB experiemnts, | ||
e.g. :class:`~.StandardRB`, :class:`~.InterleavedRB` so that users can | ||
plug in a custom Clifford synsthesis algorithm used for generating RB circuits. | ||
Such a plugin should be implemented as a ``HighLevelSynthesisPlugin`` | ||
(see :class:`~.RBDefaultCliffordSynthesis` for example). | ||
upgrade: | ||
- | | ||
Updated :class:`~.InterleavedRB` so that it only accepts ``interleaved_element`` | ||
consisting only of instructions supported by the backend of interest. | ||
fixes: | ||
- | | ||
Fixed a bug in circuit generation for three or more qubit RB where | ||
sampled Cliffords may be changed during their circuits synthesis | ||
(in the worst case, the resulting circuits may use qubits not in | ||
``physical_qubits``). See issue | ||
`#1279 <https://github.com/Qiskit-Extensions/qiskit-experiments/issues/1279>`_ | ||
for additional details. |