Add simple timers for `_data` scripts
This commit is contained in:
parent
e774c063a4
commit
b7233d004a
|
@ -42,6 +42,8 @@ if [[ $5 -lt 1 ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
timestart=$(date +%s)
|
||||||
|
|
||||||
zmodload zsh/datetime
|
zmodload zsh/datetime
|
||||||
|
|
||||||
whichDSF=$1
|
whichDSF=$1
|
||||||
|
@ -77,3 +79,11 @@ do
|
||||||
done
|
done
|
||||||
|
|
||||||
echo '\n\n++ Successfully completed c_fixed_N_prog_data on '$(date '+%Y-%m-%d-%Hh%M')'.\n' | tee -a $logfile
|
echo '\n\n++ Successfully completed c_fixed_N_prog_data on '$(date '+%Y-%m-%d-%Hh%M')'.\n' | tee -a $logfile
|
||||||
|
|
||||||
|
timestop=$(date +%s)
|
||||||
|
|
||||||
|
duration=$(($timestop - $timestart))
|
||||||
|
hours=$(($duration/3600))
|
||||||
|
minutes=$((($duration - 3600*$hours)/60))
|
||||||
|
seconds=$(($duration - 3600*$hours - 60*$minutes)) # don't bother printing
|
||||||
|
echo 'Total time used: '$hours'h '$minutes'm.\n' | tee -a $logfile
|
||||||
|
|
|
@ -37,6 +37,7 @@ if [[ $5 -lt 0 ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
timestart=$(date +%s)
|
||||||
|
|
||||||
whichDSF=$1
|
whichDSF=$1
|
||||||
kBT=$2
|
kBT=$2
|
||||||
|
@ -83,7 +84,6 @@ basedir="$(pwd)"
|
||||||
# Safety barrier:
|
# Safety barrier:
|
||||||
# if directory exists, don't do anything and request directory deletion before proceeding
|
# if directory exists, don't do anything and request directory deletion before proceeding
|
||||||
dircheck='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)nkmax}'kFo4/sr_'$target_sumrule'/store/data/N_'$N
|
dircheck='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)nkmax}'kFo4/sr_'$target_sumrule'/store/data/N_'$N
|
||||||
echo $dircheck
|
|
||||||
if [[ -d $dircheck ]]; then
|
if [[ -d $dircheck ]]; then
|
||||||
echo 'A c scan with these parameters already exists. Aborting.'
|
echo 'A c scan with these parameters already exists. Aborting.'
|
||||||
echo 'If you really want to run this command, please first delete directory:\n'$dircheck
|
echo 'If you really want to run this command, please first delete directory:\n'$dircheck
|
||||||
|
@ -97,9 +97,24 @@ do
|
||||||
dir='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)nkmax}'kFo4/sr_'$target_sumrule'/store/data/N_'$N'/c_'$c
|
dir='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)nkmax}'kFo4/sr_'$target_sumrule'/store/data/N_'$N'/c_'$c
|
||||||
mkdir -p $dir
|
mkdir -p $dir
|
||||||
cd $dir
|
cd $dir
|
||||||
|
clock1=$(date +%s)
|
||||||
LiebLin_DSF $whichDSF $c $N $N 0 $iKmax $kBT $Max_Secs $target_sumrule $refine
|
LiebLin_DSF $whichDSF $c $N $N 0 $iKmax $kBT $Max_Secs $target_sumrule $refine
|
||||||
|
clock2=$(date +%s)
|
||||||
|
dt=$(($clock2 - $clock1))
|
||||||
|
dt_hrs=$(($dt/3600))
|
||||||
|
dt_min=$((($dt - 3600*$dt_hrs)/60))
|
||||||
|
dt_sec=$(($dt - 3600*$dt_hrs - 60*$dt_min))
|
||||||
cd $basedir
|
cd $basedir
|
||||||
echo '++ Successfully computed DSFs for c =' $c', N = '$N'.\n' | tee -a $logfile
|
echo '++ Successfully computed DSFs for c =' $c', N = '$N'.' | tee -a $logfile
|
||||||
|
echo 'Time required: '$dt_hrs'h '$dt_min'm '$dt_sec's.\n' | tee -a $logfile
|
||||||
done
|
done
|
||||||
|
|
||||||
echo '\n\n++ Successfully completed c_scan_N_fixed_data for N = '$N' on '$(date '+%Y-%m-%d-%Hh%M')'.\n' | tee -a $logfile
|
echo '\n++ Successfully completed c_scan_N_fixed_data for N = '$N' on '$(date '+%Y-%m-%d-%Hh%M')'.\n' | tee -a $logfile
|
||||||
|
|
||||||
|
timestop=$(date +%s)
|
||||||
|
|
||||||
|
duration=$(($timestop - $timestart))
|
||||||
|
hours=$(($duration/3600))
|
||||||
|
minutes=$((($duration - 3600*$hours)/60))
|
||||||
|
seconds=$(($duration - 3600*$hours - 60*$minutes)) # don't bother printing
|
||||||
|
echo 'Total time required: '$hours'h '$minutes'm.\n' | tee -a $logfile
|
||||||
|
|
Loading…
Reference in New Issue