-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Support for stimcirq gates and operations in cirq_google protos #7101
Merged
dstrain115
merged 14 commits into
quantumlib:main
from
dstrain115:deserialize_stimcirq_gates
Mar 7, 2025
+77
−4
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
83ef921
Support for stimcirq gates and operations in cirq_google protos
dstrain115 7dc35df
Fix some tests.
dstrain115 f46b6ed
Add requirements for stimcirq
dstrain115 2957141
fix coverage
dstrain115 728057d
format
dstrain115 edddb0c
Address comments.
dstrain115 b91c07c
Fix coverage.
dstrain115 96b832c
Merge branch 'main' into deserialize_stimcirq_gates
dstrain115 31e59d2
Merge branch 'main' into deserialize_stimcirq_gates
dstrain115 867816b
format
dstrain115 36dd7ab
Merge branch 'main' into deserialize_stimcirq_gates
dstrain115 73c16e1
Update cirq-google/cirq_google/serialization/circuit_serializer_test.py
dstrain115 9f76b20
Move import to cached function
dstrain115 b96e5dd
Merge branch 'deserialize_stimcirq_gates' of https://github.com/dstra…
dstrain115 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
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.
Instead of relying on the stimcirq object to always have
_json_dict_
defined, prefer to usegetattr
instead. Also from your comment on line 266, it's not clear if stimcirqoperations
will also always have_json_dict_
defined.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.
I am not sure I understand what you are proposing. How do we know which attributes to get from the stimcirq object otherwise? Also, how do we know how to instantiate the appropriate object on deserialization.
I think saying that a stimcirq gate/operation must have a json_dict to be imported/exported by cirq_google protos is probably a reasonable requirement (plus, we control both repos, so we can add it if it's missing).
I did add a value error if this condition is not met though.