Skip to content

Commit

Permalink
Merge branch 'main' into feat-portal-volume-detector
Browse files Browse the repository at this point in the history
  • Loading branch information
asalzburger authored Nov 8, 2022
2 parents 48db683 + b032bd2 commit 8f17826
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions CI/physmon/physmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,13 @@
(False, True, "truth_estimated"),
(False, False, "seeded"),
]:
s = acts.examples.Sequencer(events=500, numThreads=1, logLevel=acts.logging.INFO)
# TODO There seems to be a difference to the reference files when using
# multithreading ActsAnalysisResidualsAndPulls
s = acts.examples.Sequencer(
events=500,
numThreads=1 if label == "seeded" else -1,
logLevel=acts.logging.INFO,
)

with tempfile.TemporaryDirectory() as temp:
tp = Path(temp)
Expand Down Expand Up @@ -235,7 +241,7 @@
for fitter in (VertexFinder.Iterative, VertexFinder.AMVF):
for mu in (1, 10, 25, 50, 75, 100, 125, 150, 175, 200):
start = datetime.datetime.now()
s = acts.examples.Sequencer(events=5, numThreads=1, logLevel=acts.logging.INFO)
s = acts.examples.Sequencer(events=5, numThreads=-1, logLevel=acts.logging.INFO)

with tempfile.TemporaryDirectory() as temp:
tp = Path(temp)
Expand Down

0 comments on commit 8f17826

Please sign in to comment.