-
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
Add QPY serialization for PauliEvolutionGate #7374
Merged
Merged
Changes from 6 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
16e8647
WIP: Add qpy serialization for PauliEvolutionGate
mtreinish e8bd3a0
Fix handling of operator in PauliEvolutionGate
mtreinish fbc00b7
settings for synth
Cryoris c80bfd6
Merge branch 'evolution-serialization' into qpy-evo-gate
Cryoris 19545ef
Merge remote-tracking branch 'origin/main' into qpy-evo-gate
mtreinish 71b6ee4
Add support for custom synthesis classes
mtreinish a326154
Expand test coverage
mtreinish 10531f6
Add release notes
mtreinish 79e3870
Update release note
mtreinish 8d8de99
Merge branch 'main' into qpy-evo-gate
mtreinish 4cc86bd
fix param binding in PauliEvo
Cryoris 0f6c685
Merge branch 'qpy-evo-gate' of github.com:mtreinish/qiskit-core into …
Cryoris 5a28626
allow time as an int
Cryoris f59887e
Apply suggestions from code review
mtreinish 3034922
Update qiskit/circuit/qpy_serialization.py
mtreinish 44d36df
Update qiskit/circuit/qpy_serialization.py
mtreinish babce2e
Rerun with latest black
mtreinish 82d3576
Close buffers when finished
mtreinish 7852fc9
Fix release note wording
mtreinish 05359d2
Fix lint
mtreinish 523150b
Adjust tests around extra layer of gates
mtreinish File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.
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.
No need to change this, but for the future you can avoid an extra scope by doing
the scope order is guaranteed to be left-to-right. (Assuming it's not a line-length constraint!)
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.
Ah cool, I didn't realize that