-
Notifications
You must be signed in to change notification settings - Fork 48
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
Issues with existing Select/Prepare Oracles #549
Labels
Comments
What's the essence of the problem? We use PREPARE to create a state but certain parts of that state are reflect-only or use-as-index-only? And the current system assumes the prepared state is both the thing we want to reflect and the indices used for select? |
is my understanding of the issue (close to) correct? |
yes that's right |
fdmalone
changed the title
Select/Prepare Oracles
Issues with existing Select/Prepare Oracles
Jun 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might be a misunderstanding on my part, but currently we expect that the SelectOracle and PrepareOracle selection registers should match up (in terms of bitsizes) (this is assumed in #508), AND that the selection registers (from prepare) are those registers that we want to reflect about for constructing the walk operator. However, this leads to some awkward cases:
A possible workaround would be to define black boxes which partition the incoming registers and only select the ones absolutely necessary for the gate, and then prepare should probably define a registers_for_reflection?
The text was updated successfully, but these errors were encountered: