Fix exception when sampling with post-selection#844
Open
cesarBLG wants to merge 2 commits intoquantumlib:mainfrom
Open
Fix exception when sampling with post-selection#844cesarBLG wants to merge 2 commits intoquantumlib:mainfrom
cesarBLG wants to merge 2 commits intoquantumlib:mainfrom
Conversation
Collaborator
|
Could you add a unit test verifying this? I'm surprised it didn't trip existing unit tests to be honest; definitely something that should be tested. |
Strilanc
requested changes
Oct 28, 2024
Collaborator
Strilanc
left a comment
There was a problem hiding this comment.
Add a unit test with a postselected task that used to fail but now passes.
Something like taking 1 shot from
X_ERROR(1) 0
M 0
DETECTOR rec[-1]
Author
|
I added a unit test as suggested. The reason it didn't trip any test is that circuits in _decoding_test.py are sampled using _sample_decode_helper_using_memory. The post-selection code in that function is not shared with the one in _CompiledStimThenDecodeSampler, so essentially the latter code isn't covered by any test. |
|
What's the status of this PR? I have the same issue mentioned in the top comment: |
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.
Calling sinter.collect() for tasks including a postselection_mask raises an exception. This is caused because the decoder predictions are compared to the total number of shots without excluding discarded shots.