Skip to content

Commit

Permalink
fix: Workaround Pythia8 race condition in ttbar physmon (#3965)
Browse files Browse the repository at this point in the history
Until #3963 is fixed we have to stick to single threaded processing with ttbar

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

- **Bug Fixes**
	- Adjusted threading configuration to single-threaded execution to enhance stability and prevent race conditions during simulations.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
andiwand authored Dec 9, 2024
1 parent 0a11443 commit 94ae506
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CI/physmon/workflows/physmon_trackfinding_ttbar_pu200.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@


with tempfile.TemporaryDirectory() as temp:
# Running with a single thread to avoid rance conditions with Pythia8, see https://github.com/acts-project/acts/issues/3963
s = acts.examples.Sequencer(
events=3,
numThreads=-1,
numThreads=1, # run with single thread
logLevel=acts.logging.INFO,
)

Expand Down

0 comments on commit 94ae506

Please sign in to comment.