File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ SHMSIZE=${SHMSIZE:-8000000000} # Size of shared memory for messages (use 128 GB
2828TPCTRACKERSCRATCHMEMORY=${SHMSIZE:- 4000000000} # Size of memory allocated by TPC tracker. (Use 24 GB for 550 event full TF)
2929ENABLE_GPU_TEST=${ENABLE_GPU_TEST:- 0} # Run the full system test also on the GPU
3030NTIMEFRAMES=${NTIMEFRAMES:- 1} # Number of time frames to process
31- TFDELAY=100 # Delay in seconds between publishing time frames
31+ TFDELAY=${TFDELAY :- 100} # Delay in seconds between publishing time frames
3232NOMCLABELS=" --disable-mc"
3333
3434# allow skipping
@@ -73,6 +73,7 @@ STAGES="NOGPU"
7373if [ $ENABLE_GPU_TEST != " 0" ]; then
7474 STAGES+=" WITHGPU"
7575fi
76+ STAGES+=" ASYNC"
7677for STAGE in $STAGES ; do
7778
7879 ARGS_ALL=" --session default"
@@ -83,11 +84,22 @@ for STAGE in $STAGES; do
8384 export GPUMEMSIZE=6000000000
8485 export HOSTMEMSIZE=1000000000
8586 export SYNCMODE=1
87+ export CTFINPUT=0
88+ export SAVECTF=0
89+ elif [[ " $STAGE " = " ASYNC" ]]; then
90+ export CREATECTFDICT=1
91+ export GPUTYPE=CPU
92+ export SYNCMODE=0
93+ export HOSTMEMSIZE=$TPCTRACKERSCRATCHMEMORY
94+ export CTFINPUT=1
95+ export SAVECTF=0
8696 else
8797 export CREATECTFDICT=1
8898 export GPUTYPE=CPU
8999 export SYNCMODE=0
90100 export HOSTMEMSIZE=$TPCTRACKERSCRATCHMEMORY
101+ export CTFINPUT=0
102+ export SAVECTF=1
91103 rm -f ctf_dictionary.root
92104 fi
93105 export SHMSIZE
You can’t perform that action at this time.
0 commit comments