Increase timeout for SPEC benchmarks

This commit is contained in:
Rodrigo Arias 2024-10-10 19:40:49 +02:00
parent 7d3fe35dfb
commit a9a8a0a40d

View File

@ -25,8 +25,8 @@ set -x
#timeout_silent=$((3 * 60)) # Stop if 3 min without output #timeout_silent=$((3 * 60)) # Stop if 3 min without output
# Timeouts for SPEC benchmarks # Timeouts for SPEC benchmarks
timeout=$((6 * 60 * 60)) # Always stop after 6 h timeout=$((12 * 60 * 60)) # Always stop after 12 h
timeout_silent=$((2 * 60 * 60)) # Stop if 2 h without output (some benchmarks take 1.6h) timeout_silent=$((4 * 60 * 60)) # Stop if 4 h without output (some benchmarks take 1.6h)
# Set dead switch # Set dead switch
sleep $timeout && killall picocom & sleep $timeout && killall picocom &