How to find from where a job is submitted in SLURM?

后端 未结 3 1719
余生分开走
余生分开走 2021-02-01 09:40

I submitted several jobs via SLURM to our school\'s HPC cluster. Because the shell scripts all have the same name, so the job names appear exactly the same. It looks like

<
3条回答
  •  时光取名叫无心
    2021-02-01 10:07

    The latest version of Slurm now offers that information through squeue with :

    squeue --format "%Z"
    

    that displays, according to the man page,

    %Z    The job’s working directory.
    

提交回复
热议问题