-
Notifications
You must be signed in to change notification settings - Fork 20
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
[Context] Halved parameter flag. #191
Merged
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
xumingkuan
approved these changes
Dec 18, 2024
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.
Looks good, thanks!
Co-authored-by: Mingkuan Xu <[email protected]>
Co-authored-by: Mingkuan Xu <[email protected]>
Co-authored-by: Mingkuan Xu <[email protected]>
xumingkuan
reviewed
Dec 18, 2024
Co-authored-by: Mingkuan Xu <[email protected]>
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
This pull request introduces a flag for each parameter, which identifies whether it is halved or not. A halved parameter is a symbolic parameter that can be used in gates which take parameters of the form$\theta / 2$ . Examples of such gates include
rx
,ry
, andrz
.Details
This pull request makes two changes to Quartz. First, each gate now has an$\theta / 2$ . The parameter index is taken an argument, since gates such as
is_param_halved(i)
method, which returns true if parameteri
is of the formu3
have both halved parameters and standard parameters.This new metadata is then used by the
Context
to determine if any halved parameter gates are in use. If such a gate is in use, then the context conservatively assumes that the parameter will appear in a halved parameter gate.This pull request should not change the behaviour of Quartz in any way.
Purpose
This pull request is a partial solution to issue #190. In particular, this pull request adds support for the halved_parameter flag. This is to ensure that the maintainers of Quartz are satisfied with the solution, before integrating it with the
QasmParser
.