-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Singeltonize Measure
, Reset
, and Barrier
#10953
Comments
Hii @mtreinish! If this issue still unassigned, can I take up this issue |
@Matrixmang0 sure if you have the bandwidth for this feel free to give it a try. I'd recommend trying to use |
I'll certainly do my best. As I'm still getting acquainted with the repository, I'm uncertain about my bandwidth to tackle this issue. However, with your guidance, support from this incredible community, I'm hopeful that I can navigate through and resolve the issue :) |
Measure
, Reset
, and Barrier
Measure
, Reset
,~ and Barrier
Measure
, Reset
,~ and Barrier
Measure
, Reset
, and Barrier
Update on this: #11170 made |
Given the last comment here I'm going to close this as complete because I think |
What should we add?
In #10314 (comment) it was pointed out after #10314 merged that we can make some of the circuit instructions singletons pretty easily just as we did for parameterless gates. The
Measure
,Reset
instruction are super straightforward to convert to singletons because they are single qubit/clbit constructs and do not take any parameters.Barrier
also conceptually can be a "singleton" with a globally shared instance for barriers but as its variable width we'd need to store a distinct instance for each value of number of qubits thatBarrier
is instantiated with, which will require some custom handling as none of the singleton fixtures support this yet.The text was updated successfully, but these errors were encountered: