pbs 书写

pbs 书写

#!/bin/sh
#PBS -l nodes=1:ppn=8
#PBS -q students
#PBS -j oe
#PBS -N heme
cd /home/sxtian/cf3/CF3-Cl
/usr/local/chemsoft/autodock4.2.2.1/bin/autodock4 -p CF3-Cl.dpf -l CF3-Cl.dlg


test1@master t]vi pbsjob
#!/bin/tcsh
#PBS -o /home/test1/pbstest/t/output 标准 输出文件
#PBS -e /home/test1/pbstest/t/error 错误输出文件
#PBS -l nodes=5:ppn=4 规定使用的节点数以及每个节点能跑多少核
#PBS –q students 把任务提交到 students 队列中
cd $PBS_O_WORKDIR 到工作目录下(此为 PBS 提供的环境变量)
mpirun –machine $PBS_NODEFILE -np 20 ./ vasp

你可能感兴趣的:(pbs 书写)