-
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.
Fix a bug in EPG computation for devices with ECR gates (#1431)
### Summary Fixed a bug in EPG (error per gate) computation in `RBAnalysis` where it fails with a ``TypeError`` for backends with ECR gate as a 2-qubit basis gate (e.g. IBM Eagle processors). Fixed #1419 . ### Details and comments Added the standard gate error ratio (`1.0`) for ECR gate as suggested in the issue. Also added a sentence to explain how to skip EPG computation in the manual.
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 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
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
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,10 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed a bug in EPG (error per gate) computation in :class:`~.RBAnalysis` | ||
where it fails with a ``TypeError`` for backends with ECR gate | ||
as a 2-qubit basis gate (e.g. IBM Eagle processors). | ||
See | ||
`#1419 | ||
<https://github.com/Qiskit-Extensions/qiskit-experiments/pull/1419>`_. | ||
for the details of the bug. |