-
Notifications
You must be signed in to change notification settings - Fork 115
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
Decompose measurement in QIR Base profile processing #2230
Conversation
This change simplifies the decomposition of `M` and `Measure` in the stdlib to no longer conditionally compile to different versions based on qubit reuse capability, instead offloading that to QIR processing, which already has similar logic. One effect of this is simulation and circuit generation will match user expectation and patterns in the Q# code rather than more closely showing what occurs on hardware.
Change in memory usage detected by benchmark. Memory Report for 517a0e1
|
Change in memory usage detected by benchmark. Memory Report for 88ad901
|
Forgot to add before I signed off: Can we update the circuit UI to remove the target profile information since it's no longer relevant? |
Well, it's no longer relevant for most bits but it could still be relevant for conditionally compiled code from librarys or the user's own code. Since it's not too obtrusive, I'd be in favor of leaving it. But I could be convinced ;). |
Change in memory usage detected by benchmark. Memory Report for 01cf761
|
Now that the measurement decompositions are handled lower in the stack (see #2230), the examples for how measurements show up differently for circuits from Base profile vs Unrestricted no longer make sense. This removes them. Likewise the section in the wiki on circuits for different profiles should be updated or removed (see https://github.com/microsoft/qsharp/wiki/Circuit-Diagrams-from-Q%23-Code#target-profile)
Now that the measurement decompositions are handled lower in the stack (see #2230), the examples for how measurements show up differently for circuits from Base profile vs Unrestricted no longer make sense. This removes them. <s>Likewise the section in the wiki on circuits for different profiles should be updated or removed (see https://github.com/microsoft/qsharp/wiki/Circuit-Diagrams-from-Q%23-Code#target-profile)</s> Done.
This change simplifies the decomposition of
M
andMeasure
in the stdlib to no longer conditionally compile to different versions based on qubit reuse capability, instead offloading that to QIR processing, which already has similar logic.One effect of this is simulation and circuit generation will match user expectation and patterns in the Q# code rather than more closely showing what occurs on hardware.