2 Commits
1.00 ... 1.01

Author SHA1 Message Date
939da6f3dc fixed Tmax bug. 2026-05-21 12:22:55 +00:00
3d68686a96 fio uses all cores of the system. 2026-02-27 09:14:32 +01:00
3 changed files with 4 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ fi
verbose=false
COLOR='red'
PADDING=5
PADDING=0
VALID_ARGS=$(getopt -o vho:c:t:l: --long verbose,help,output,color:,title:,logfile: -- "$@")
if [[ $? -ne 0 ]]; then

View File

@@ -1,5 +1,7 @@
export FIO_NUMJOBS=$(nproc)
measure_temp.sh > ${1} &
TPID=$!
fio ~/git/pistress/fio/fio_cpu
kill $TPID > /dev/null
unset FIO_NUMJOBS

View File

@@ -5,7 +5,7 @@ cpuchunks=100000
runtime=3600
time_based
group_reporting
numjobs=4
numjobs=${FIO_NUMJOBS}
[cpu-stress]