Skip to content

Commit 8586190

Browse files
committed
more tpc sectors per clusterer
with more friendly memory, we can reduce the number of processes and do more sectors per clusterer
1 parent 68a8aa7 commit 8586190

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -741,10 +741,10 @@ def getDigiTaskName(det):
741741
# -----------
742742
tpcreconeeds=[]
743743
if not args.combine_tpc_clusterization:
744-
# We treat TPC clusterization in multiple (sector) steps in order to stay within the memory limit
745-
# We seem to be needing to ask for 2 sectors at least, otherwise there is a problem with the branch naming.
744+
# We treat TPC clusterization in multiple (sector) steps in order to
745+
# stay within the memory limit or to parallelize over sector from outside (not yet supported within cluster algo)
746746
tpcclustertasks=[]
747-
sectorpertask=6
747+
sectorpertask=18
748748
for s in range(0,35,sectorpertask):
749749
taskname = 'tpcclusterpart' + str((int)(s/sectorpertask)) + '_' + str(tf)
750750
tpcclustertasks.append(taskname)

0 commit comments

Comments
 (0)