| 查看: 2045 | 回复: 3 | ||
[求助]
mpirun并行运行问题
|
|
我在集群上运行一个软件,本意要求它一次同时运行两个任务,但是每次它都只是运行一个任务,软件的作者解释是如下,不知有没有大侠能否指点一下迷津.先行谢谢了. It appears that both mpi processes launched, but for some reason they launched independently of each other. This means that neither process was aware of the other process, so both processes were doing the same things. Both processes opened Test.inp and then tried to create this directory: /home/Test/Gaussian/bestSavedStructures One process succeded, and the other failed. The one that failed printed "Couldn't create log files directory." in the .e file and immediately stopped. The other kept going and made it to iteration 10, which was the predetermined stopping point. There didn't seem to be any problems with the disk which is very good. If you can figure out how to get the processes to see each other, you'll have a working program. Upon launch, each process prints it's rank (or index) and the total number of processes. This is what was printed during this run: This is MPI process with rank 0. Total MPI processes: 1 This is MPI process with rank 0. Total MPI processes: 1 This is what it should have printed: This is MPI process with rank 0. Total MPI processes: 2 This is MPI process with rank 1. Total MPI processes: 2 Please replace '-np 2' in pso.pbs with another option. You might try '-hostfile nodes.txt' or '-cpus-per-rank 1'. Or look at other options listed at http://www.open-mpi.org/doc/v1.4/man1/mpirun.1.php . Hope that helps! |
» 猜你喜欢
招生材料与化工、环境科学调剂研究生
已经有5人回复
A 区过线就可申!重庆双非公办高校 0856调剂,接受跨专业!纳米材料 / 润滑热门方向
已经有0人回复
物理化学论文润色/翻译怎么收费?
已经有174人回复
欢迎调剂长江师范学院汤老师课题组的硕士研究生
已经有0人回复
中国电机工程学报的投稿系统
已经有0人回复
厦门大学侯旭团队招聘青年教师、博士后及博硕士研究生
已经有2人回复
哈工大深圳 表界面物理化学方向(胶体与界面,光谱探测研究) 博士招生
已经有0人回复
元素硫的化合价和氧化态
已经有1人回复
江苏科技大学2026年招聘启事
已经有0人回复
求助:三乙酰丙酮铁(Fe(acac)₃)标准红外(IR)与XRD谱图/数据
已经有0人回复
» 本主题相关价值贴推荐,对您同样有帮助:
lammps并行安装最后一步make serial出错
已经有17人回复
abinit安装出错
已经有4人回复
关于autogrid 运行的问题
已经有7人回复
VASP5.2版本并行安装时出问题了,已经到最后一步了
已经有28人回复
vasp并行运算出现问题:mpivars.sh: No such file or directory
已经有3人回复
ArcGIS10.1运行问题
已经有3人回复
LAMMPS并行计算的问题(cpu——time关系)
已经有17人回复
vasp 集群并行出错
已经有7人回复
采用PBS脚本第一次提交任务,算了1步就被杀死,有错误提示但不知道原因?
已经有19人回复
MOLCAS并行计算安装方法
已经有5人回复
VASP并行计算出错
已经有9人回复
关于NAMD mpi并行问题
已经有4人回复
vasp并行出错,急于求助!!!
已经有13人回复
vasp 并行运算出错
已经有7人回复
【求助】运行并行版的DL_POLY的时候,出现的问题
已经有8人回复
【求助】mpi vasp问题
已经有32人回复
【求助】vasp运行问题
已经有7人回复
【求助】Lammps 多机并行的问题
已经有11人回复
【求助】MS4.3/4.4多核处理器并行运算的问题
已经有24人回复


2楼2012-10-29 20:32:28
virtualzx
木虫 (著名写手)
- QC强帖: 2
- 应助: 263 (大学生)
- 金币: 7161.3
- 红花: 54
- 帖子: 1605
- 在线: 317.6小时
- 虫号: 2069080
- 注册: 2012-10-18
- 性别: GG
- 专业: 理论和计算化学
3楼2012-10-30 03:53:15
|
#!/bin/bash #PBS -N TestJob #PBS -l nodes=2:ppn=8,walltime=0:30:00 #PBS -l mem=4GB export LD_LIBRARY_PATH=/home/fan_group/openmpi/lib:$LD_LIBRARY_PATH echo PBS_O_WORKDIR=$PBS_O_WORKDIR echo PBS_ENVIRONMENT=$PBS_ENVIRONMENT echo PBS_NODEFILE=$PBS_NODEFILE echo cat $PBS_NODEFILE cat $PBS_NODEFILE echo $PBS_NODEFILE echo HOSTNAME=`/bin/hostname` # Create the nodes.txt file # The next line writes one node per line and allows duplicate nodes # Use this if you want one Gaussian job per processor. # cp $PBS_NODEFILE /home/fan_group/lzhl/pso/Test/Gaussian/nodes.txt # The next line writes one node per line and does NOT allow duplicate nodes. # Use this if you want one Gaussian job per node with each job runing in parallel on multiple processors. cat $PBS_NODEFILE | uniq > /home/fan_group/lzhl/pso/Test/Gaussian/nodes.txt cd /home/fan_group/pso1.5.2 /opt/openmpi/bin/mpirun -np 2 ./pso -walltime 0:30:00 /home/fan_group/lzhl/pso/Test/Gaussian/Test.inp |

4楼2012-11-05 10:30:44











回复此楼