Skip to content
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

Fix flake in sinter tests #839

Open
Strilanc opened this issue Sep 24, 2024 · 0 comments
Open

Fix flake in sinter tests #839

Strilanc opened this issue Sep 24, 2024 · 0 comments

Comments

@Strilanc
Copy link
Collaborator

___________________________ test_worker_finish_work ____________________________

    def test_worker_finish_work():
        handler = MockWorkHandler()
    
        inp = multiprocessing.Queue()
        out = multiprocessing.Queue()
        inp.cancel_join_thread()
        out.cancel_join_thread()
    
        worker = CollectionWorkerState(
            flush_period=-1,
            worker_id=5,
            sampler=handler,
            inp=inp,
            out=out,
            custom_error_count_key=None,
        )
    
        assert worker.process_messages() == 0
        _assert_drain_queue(out, [])
    
        ta = sinter.Task(
            circuit=stim.Circuit('H 0'),
            detector_error_model=stim.DetectorErrorModel(),
            decoder='mock',
            collection_options=sinter.CollectionOptions(max_shots=100_000_000),
            json_metadata={'a': 3},
        )
        handler.expected_task = ta
        _put_wait_not_empty(inp, ('change_job', (ta, sinter.CollectionOptions(max_errors=100_000_000), 100_000_000)))
        _put_wait_not_empty(inp, ('accept_shots', (ta.strong_id(), 10000)))
>       assert worker.process_messages() == 2
E       assert 1 == 2
E        +  where 1 = process_messages()
E        +    where process_messages = <sinter._collection._collection_worker_state.CollectionWorkerState object at 0x7f27b7e75e[50](https://github.com/quantumlib/Stim/actions/runs/11009521084/job/30569371086#step:9:51)>.process_messages

glue/sample/src/sinter/_collection/_collection_worker_test.py:166: AssertionError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant