Improve __pow__ for SingleQubitCliffordGate (issue #6327)#6919
Merged
NoureldinYosri merged 3 commits intoquantumlib:mainfrom Jan 15, 2025
Merged
Improve __pow__ for SingleQubitCliffordGate (issue #6327)#6919NoureldinYosri merged 3 commits intoquantumlib:mainfrom
NoureldinYosri merged 3 commits intoquantumlib:mainfrom
Conversation
Compute the power in O(1) using the fact that the single clifford gates are a group of size 24. Add support for rational exponents k/2, where k is an integer.
Contributor
Author
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6919 +/- ##
=======================================
Coverage 97.87% 97.87%
=======================================
Files 1084 1084
Lines 94420 94495 +75
=======================================
+ Hits 92409 92484 +75
Misses 2011 2011 ☔ View full report in Codecov by Sentry. |
dstrain115
reviewed
Jan 15, 2025
Collaborator
dstrain115
left a comment
There was a problem hiding this comment.
This looks correct to me, but could use a second look from @NoureldinYosri who requested this optimization.
NoureldinYosri
approved these changes
Jan 15, 2025
This file contains hidden or 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
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.
Compute the power in O(1) for integer exponents using the fact that single qubit Clifford gates form a group of size 24.
Add support for rational exponents k/2, where k is an integer.