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

后端 未结 3 1712
余生分开走
余生分开走 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:09

    You can use the scontrol command to see the job details. $ scontrol show job

    For example, for a running job on our SLURM cluster:

    $ scontrol show job 1665191
        JobId=1665191 Name=tasktest
        ...
        Shared=OK Contiguous=0 Licenses=(null) Network=(null)
        Command=/lustre/work/.../slurm_test/task.submit
        WorkDir=/lustre/work/.../slurm_test
    

    You are looking for the last line, WorkDir.

提交回复
热议问题