Skip to content

Commit

Permalink
Increased cpu value to 8 when creating pool
Browse files Browse the repository at this point in the history
  • Loading branch information
jackal1-66 authored and sawenzel committed Dec 19, 2024
1 parent 6d914ef commit 0921c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MC/bin/o2dpg_sim_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def getDPL_global_options(bigshm=False, ccdbbackend=True):
if GENERATOR=="hepmc" and tf > 1:
sgngenneeds=signalneeds + ['sgngen_' + str(tf-1)] # we serialize event generation
SGNGENtask=createTask(name='sgngen_'+str(tf), needs=sgngenneeds, tf=tf, cwd='tf'+str(tf), lab=["GEN"],
cpu=1, mem=1000)
cpu=8 if args.make_evtpool else 1, mem=1000)

SGNGENtask['cmd']=''
if GENERATOR=="hepmc":
Expand Down

0 comments on commit 0921c71

Please sign in to comment.