Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个标志可以让 SGE 输出它最终调度作业运行的机器?我看了看那个人,但找不到任何东西。
有几种可能性:
1:在作业运行时,您可以使用qstat -g t来获取您的作业正在运行的节点。
qstat -g t
2:作业完成后,qacct -j [jobid]显示每个节点的信息,作业正在运行。
qacct -j [jobid]
3:在 Linux 上,您可以执行命令hostname(或mpirun hostname)来打印相应的节点。
hostname
mpirun hostname