-
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
Fix phase of cu3 gate to be compatible with u3 gate definition #2755
Merged
Conversation
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
chriseclectic
requested review from
1ucian0,
ajavadia,
atilag,
delapuente,
diego-plan9,
ewinston,
jaygambetta,
kdk,
lcapelluto,
mtreinish,
nonhermitian and
taalexander
as code owners
July 8, 2019 20:13
nonhermitian
approved these changes
Jul 20, 2019
Is this a fix for #546 also? |
@1ucian0 yep |
lia-approves
pushed a commit
to edasgupta/qiskit-terra
that referenced
this pull request
Jul 30, 2019
…t#2755) * fix phase of cu3 definition * update changelog * update unroller test for new cu3 def
1ucian0
pushed a commit
to 1ucian0/qiskit-terra
that referenced
this pull request
Nov 15, 2019
faisaldebouni
pushed a commit
to faisaldebouni/qiskit-terra
that referenced
this pull request
Aug 5, 2020
…3.py (Qiskit#3479) * update qiskit/qasm/libs/qelib1.inc according to Qiskit#2755 * re adjust the length * test
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #2703
Currently the cu3 gate is not a controlled u3 gate under the current definition. It differs by a local phase on the u3 gate (which would be an ignorable global phase on normal u3, but not when it is controlled). This adds an additional u1 gate the the definition of the
cu3
gate so that it has the correct matrix definition.Details and comments
Before this PR the following would return falls because the output unitary for
cu3
was not equal (up to global phase) toI ⊗ |0X0| + U3(a, b, c) ⊗ |1X1|