Skip to content

Commit 0931587

Browse files
committed
Run also the asynchronous reconstruction in the alibi full system test
1 parent 51d8f0e commit 0931587

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

prodtests/full_system_test.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SHMSIZE=${SHMSIZE:-8000000000} # Size of shared memory for messages (use 128 GB
2828
TPCTRACKERSCRATCHMEMORY=${SHMSIZE:-4000000000} # Size of memory allocated by TPC tracker. (Use 24 GB for 550 event full TF)
2929
ENABLE_GPU_TEST=${ENABLE_GPU_TEST:-0} # Run the full system test also on the GPU
3030
NTIMEFRAMES=${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
3232
NOMCLABELS="--disable-mc"
3333

3434
# allow skipping
@@ -73,6 +73,7 @@ STAGES="NOGPU"
7373
if [ $ENABLE_GPU_TEST != "0" ]; then
7474
STAGES+=" WITHGPU"
7575
fi
76+
STAGES+=" ASYNC"
7677
for 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

0 commit comments

Comments
 (0)