Hello all, I am trying to get a cpu node to mount my vs code session on - for which I use this slurm script.
#!/bin/sh
#SBATCH --job-name=bgcpu
#SBATCH --cpus-per-task=1
#SBATCH --time=00-12:00:00
#SBATCH --partition=private-dpnc-cpu,shared-cpu
#SBATCH --output=/home/users/s/senguptd/logs/slurm-%A.out
#SBATCH --mem=25GB
export XDG_RUNTIME_DIR=""
echo $HOSTNAME
srun sleep 12h
Once I get a node I login to that node and mount my VSCode for the day.
However I am getting this error when I try to launch the job
Any idea what the raisedsignal:53 refers to, and what the solution to this is?