-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update comment in a test file #11317
Conversation
One or more of the the following people are requested to review this:
|
Pull Request Test Coverage Report for Build 8749665399Details
💛 - Coveralls |
qc = QuantumCircuit(2) | ||
qc.cz(0, 1) | ||
|
||
bt_pass = BasisTranslator(std_eqlib, target_basis=None, target=self.target) | ||
output = bt_pass(qc) | ||
# We need a second run of BasisTranslator to correct gates outside of | ||
# the target basis. This is a known isssue, see: | ||
# https://qiskit.org/documentation/release_notes.html#release-notes-0-19-0-known-issues |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fwiw the updated release note link is: https://qiskit.org/documentation/legacy_release_notes.html#release-notes-0-19-0-known-issues but I know that won't be valid itself after too long. But the example there is the minimum reproducer of this problem. In practice it only comes up for manually constructed targets though, it's not a real issue as none of the backends I'm aware of have heterogeneous 1q gates.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for recovering the original known issue! I moved it to an issue so we keep it with the rest of them and updated the comment.
Not a fix, but I ran into this problem and I noticed that there was a note in one of the tests. However, the link in the notes is broken. Is #7346 the write issue that is tracking the problem?