1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 17:25:23 +02:00
dotfiles/bash/bash_slurm

32 lines
1.3 KiB
Bash
Raw Normal View History

# Job + Remaining time
2017-08-24 16:39:26 +02:00
2019-02-05 16:03:18 +01:00
[[ -n $SLURM_JOB_ID && -z $SLURM_JOB_WALLTIME_SECONDS ]] && SLURM_JOB_WALLTIME_SECONDS=$(scontrol show job "$SLURM_JOB_ID" | grep -Po 'TimeLimit=\K[^ ]*' | awk -F: '/:/ { print ($1 * 3600) + ($2 * 60) + $3 }')
2017-08-24 16:39:26 +02:00
2018-02-25 13:04:07 +01:00
__slurm_ps1_remaining_time() {
if [ -n "$SLURM_JOB_ID" ]; then
DATE_NOW=$(date +%s)
DATE_JOB_START=$(stat -c %Y "/sys/fs/cgroup/cpu/slurm/uid_${UID}/job_${SLURM_JOB_ID}")
2017-08-24 16:39:26 +02:00
((DATE_TMP = (SLURM_JOB_WALLTIME_SECONDS - DATE_NOW + DATE_JOB_START) / 60))
echo -n "[SLURM$SLURM_JOB_ID->$DATE_TMP]"
fi
}
2018-02-25 13:04:07 +01:00
[[ -n $INTERACTIVE && -n $SLURM_PTY_PORT ]] && (
2019-02-05 16:03:18 +01:00
echo "[SLURM] SLURM_JOB_ID=${SLURM_JOB_ID}"
echo "[SLURM] Your nodes are:"
[[ $(echo "$SLURM_JOB_CPUS_PER_NODE" | grep '(x') ]] && nbcpu=$(echo "$SLURM_JOB_CPUS_PER_NODE" | grep -o '^[^(]*' )
2019-02-05 16:02:58 +01:00
for node in $(scontrol show hostname "$SLURM_JOB_NODELIST") ; do
i=$((i+1))
echo " ${node}*${nbcpu:-$(echo "$SLURM_JOB_CPUS_PER_NODE" | cut -d, -f$i)}"
done
) || true
alias sql=' squeue -la'
alias sqlu='squeue -la -u $USER'
alias sd=' sinfo -d'
alias i=' srun -p interactive --qos qos-interactive --time=5:0 --pty bash -i'
alias ix=' srun -p interactive --qos qos-interactive --time=5:0 --x11 --pty bash -i'
2023-01-13 00:03:17 +01:00
scol() {
2024-01-30 14:18:57 +01:00
sinfo -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\|inval\)' | column -t -s'|' | sort
2023-01-13 00:03:17 +01:00
}