Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion HLTrigger/Configuration/python/HLT_75e33/test/runHLTTiming.sh
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,25 @@ run_ngt_scouting() {
############################

main() {

# create fake input files
touch Phase2Timing_resources.json
touch Phase2Timing_resources_NGT.json
touch Phase2Timing_resources_OnCPU.json

mkdir -p logs.Phase2_L1P2GT_HLT
mkdir -p logs.Phase2_L1P2GT_HLT_OnCPU
mkdir -p logs.NGTScouting_L1P2GT_HLT

touch logs.Phase2_L1P2GT_HLT/cpu_memory.csv
touch logs.Phase2_L1P2GT_HLT/gpu_memory.csv
touch logs.Phase2_L1P2GT_HLT/gpu_usage.csv
touch logs.Phase2_L1P2GT_HLT_OnCPU/cpu_memory.csv
touch logs.NGTScouting_L1P2GT_HLT/cpu_memory.csv
touch logs.NGTScouting_L1P2GT_HLT/gpu_memory.csv
touch logs.NGTScouting_L1P2GT_HLT/gpu_usage.csv

exit 0 # temporarily until we have samples in CMSSW_20_0_X

fetch_files
build_input_file_string

Expand Down
3 changes: 2 additions & 1 deletion HLTrigger/Configuration/test/examLogs.csh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

set base = RelVal_HLT

foreach gtag ( MC DATA )
#foreach gtag ( MC DATA ) do not run MC based tests in CMSSW_20_0_X
foreach gtag ( DATA )

echo
echo $gtag
Expand Down
4 changes: 2 additions & 2 deletions HLTrigger/Configuration/test/runAll.csh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ echo "Running selected cfg files from:"
pwd

rm -f ./runOne.log
time ./runOne.csh DATA $1 >& ./runOne.log &
time ./runOne.csh MC $1
time ./runOne.csh DATA $1 # >& ./runOne.log
# & time ./runOne.csh MC $1 # do not run MC based test in CMSSW_20_0_X

set N = 0
cp -f ./runOne.log ./runOne.tmp
Expand Down