跳至内容
龙讯旷腾 pwmat Wiki
用户工具
注册
登录
站点工具
搜索
工具
显示页面
过去修订
全部折叠/展开
反向链接
最近更改
媒体管理器
网站地图
注册
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
mstation:torque
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
====== 老环境 pbs torque 调度使用 pwmat ====== * 作业脚本示例 <wrap tip>1 node</wrap> <code bash> #PBS -N tutorial_scf #PBS -l nodes=1:ppn=4 #PBS -q batch #PBS -l walltime=1000:00:00 ulimit -s unlimited NPROCS=`wc -l < $PBS_NODEFILE` cd $PBS_O_WORKDIR mpirun -np ${NPROCS} PWmat | tee output </code> * 作业脚本示例 <wrap tip>2 node</wrap> <code bash> #!/bin/bash #PBS -N pwmat_test #PBS -l nodes=2:ppn=8 #PBS -l walltime=2:00:00 #PBS -q batch #PBS -o PWmat.out #PBS -e PWmat.err ulimit -s unlimited source /where/your/install/pwmat/pwmat.env #this line may vary according to where the PWmat installed cd $PBS_O_WORKDIR NP=`cat $PBS_NODEFILE | wc -l` cat $PBS_NODEFILE < ./hosts mpirun -np $NP --machinefile $PBS_NODEFILE PWmat | tee output </code> * 作业脚本示例 <wrap tip>2 node</wrap><wrap safety>指定 gn1, gn2 节点</wrap> <code bash> #!/bin/bash #PBS -N pwmat_test #PBS -l nodes=gn1:ppn=4+gn2:ppn=4 #PBS -l walltime=2:00:00 #PBS -q batch #PBS -o PWmat.out #PBS -e PWmat.err ulimit -s unlimited source /where/your/install/pwmat/pwmat.env #this line may vary according to where the PWmat installed cd $PBS_O_WORKDIR NP=`cat $PBS_NODEFILE | wc -l` cat $PBS_NODEFILE < ./hosts mpirun -np $NP --machinefile $PBS_NODEFILE PWmat | tee output </code>
mstation/torque.txt
· 最后更改: 2024/03/27 10:23 由
pengge
页面工具
显示页面
过去修订
反向链接
全部折叠/展开
回到顶部