-
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
Inverse of MCX gates to include ancillae #5020
Merged
mergify
merged 6 commits into
Qiskit:master
from
kdk:4953-Inverse-of-MCX-gates-generated-without-qubits-for-ancillae
Sep 4, 2020
Merged
Inverse of MCX gates to include ancillae #5020
mergify
merged 6 commits into
Qiskit:master
from
kdk:4953-Inverse-of-MCX-gates-generated-without-qubits-for-ancillae
Sep 4, 2020
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
kdk
added
stable backport potential
The bug might be minimal and/or import enough to be port to stable
Changelog: Bugfix
Include in the "Fixed" section of the changelog
labels
Sep 2, 2020
It looks like this introduces some import cycles. My guess is we'll probably have to revisit what I did in: #4450 |
kdk
force-pushed
the
4953-Inverse-of-MCX-gates-generated-without-qubits-for-ancillae
branch
from
September 3, 2020 14:24
56e2ce9
to
071f71c
Compare
…t-qubits-for-ancillae
Cryoris
approved these changes
Sep 4, 2020
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.
LGTM 👍 It's a little strange that the incorrect inverse of C3X didn't break any tests, but maybe this was a case where the gate parameter in the test was set to 0.
mtreinish
approved these changes
Sep 4, 2020
…t-qubits-for-ancillae
mergify bot
pushed a commit
that referenced
this pull request
Sep 4, 2020
* SXGate().inverse() to return SXdgGate() and vice versa. * Instruction.inverse to no longer return modified copy of input gate. * Fix C3XGate.inverse to negate angle if non-zero. * MCXGate.inverse to return gate of same mode as original gate. Co-authored-by: Julien Gacon <jules.gacon@googlemail.com> Co-authored-by: Matthew Treinish <mtreinish@kortar.org> (cherry picked from commit 70fc3f8)
kdk
added a commit
that referenced
this pull request
Sep 4, 2020
* SXGate().inverse() to return SXdgGate() and vice versa. * Instruction.inverse to no longer return modified copy of input gate. * Fix C3XGate.inverse to negate angle if non-zero. * MCXGate.inverse to return gate of same mode as original gate. Co-authored-by: Julien Gacon <jules.gacon@googlemail.com> Co-authored-by: Matthew Treinish <mtreinish@kortar.org> (cherry picked from commit 70fc3f8) Co-authored-by: Kevin Krsulich <kevin.krsulich@ibm.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Changelog: Bugfix
Include in the "Fixed" section of the changelog
stable backport potential
The bug might be minimal and/or import enough to be port to stable
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
Resolves #4953 by adding
inverse
methods to theMCXGate
modes which return gates of the same mode.Details and comments
Also, fixes some small related bugs that came up during testing:
SXGate().inverse()
to returnSXdgGate()
and vice versa.Instruction.inverse
to no longer return modified copy of input gate.This is necessary for gates which do not have a defined
inverse
method and are not self-adjoint (e.g. DCX, iSwap), because the returned gate would have an updateddefinition
, but still incorrectly retain properties of the original gate (namelyto_matrix
).C3XGate.inverse
to negate angle if non-zero.