| 查看: 3403 | 回复: 6 | |||
[交流]
GAMESS最新安装通过
|
|||
|
GAMESS最新安装通过--不知有没有遗漏,测试结果有些问题,请高手指点,谢谢 这些怎么没有加入 测试结果 测试结果-- DDI Process 0: error code 911 ,不知何故 |
» 猜你喜欢
分子动力学 Plumed教程求助
已经有0人回复
研究生学术新锐奖|宁波微纳材料研讨会参会通知
已经有2人回复
物理化学论文润色/翻译怎么收费?
已经有115人回复
申请2027年材料/化学类博士
已经有6人回复
求相关合成条件
已经有12人回复
2027春季申博自荐
已经有6人回复
青基的材料青椒们,可以把硕士联培生送我这里,要研二男生
已经有67人回复
申博
已经有2人回复
» 本主题相关价值贴推荐,对您同样有帮助:
最新驾照理论考试速成2012.1.0 安装版【转载】
已经有80人回复
走向财务自由:最新穷爸爸富爸爸现金流游戏简体中文版安装包【转载】
已经有96人回复
Gamess-NEDA结果求助...
已经有7人回复
【求助】安装Gamess时出现如下问题怎么解决?
已经有14人回复
【求助】gamess的一点小问题,如何注册环境变量
已经有4人回复
【求助】gamess 安装后,做测试的时候出现DDI Process 0: error code 911问题。
已经有9人回复
【原创】linux 下 icc+MKL 方案编译安装 gamess
已经有62人回复
【求助】求gamess 输入使用赝势基组与分裂基组的例子
已经有6人回复
【分享】为PC-GAMESS写了个小程序,可以用Molekel显示NBO轨道
已经有13人回复
» 抢金币啦!回帖就可以得到:
诚征女友
+1/470
华南理工大学 光电材料方向 王竣可教授课题组招聘博士后、博士生及科研助理
+5/430
急招科研助理/博士后
+2/126
美国肯塔基大学Dr. Sheng Tong博士后招聘(空间可控的基因组编辑与肿瘤免疫治疗)
+1/96
江南大学(211)招收2027年低空技术与工程、土木工程专业推荐免试研究生
+2/64
石河子大学211双一流学科分子筛等多孔材料与生物质资源化利用方向招2027级推免生
+1/31
招收 哈工大深圳﹣大湾区大学联合培养博士生1名,2027年入学
+1/30
27博士申请自荐
+1/21
坐标天津,诚征女友,希望遇到有缘之人。
+1/21
深圳大学2027级光电信息工程/物理学研究生推免
+1/16
深圳大学应用技术学院招聘凝聚态物理博士后
+1/16
中国科大-合肥国家实验室冷原子量子网络团队招聘启事
+2/16
中科院西北研究院招收遥感、地信相关专业联培研究生及科研助理!
+1/11
欢迎推免生/准推免生报名(约80名每年)--长期有效--物理/电子等所有理工专业
+1/9
科研测试代下单:科学指南针、科研狗余额优惠
+1/5
口腔特刊客座招募客编Biofunctional Materials牙科生物功能材料专题,Scopus期刊
+1/4
北理工集成电路杰青团队 | 诚招科助理
+1/4
北京理工大学-集成电路与电子学院杰青团队-招博士后
+1/3
广东省智能院与澳门大学、澳门科技大学、澳理工联合培养博士招生
+1/3
中山大学具身智能方向招2027届考核制博士生
+1/2
2楼2011-09-28 12:42:24
3楼2011-09-28 15:56:31
|
编译程序时用的MPICH2,rungms里面的内容修改搞的不是很明白,请高手指点一下。看看哪些地方需要修改,rungms里默认的是Intel MPI rungms: Here we use two constant node names, compute-0-0 and compute-0-1, each of which is assumed to be SMP (ours are 8-ways): Each user must set up a file named ~/.mpd.conf containing a single line: "secretword=GiantsOverDodgers" which is set to user-only access permissions "chmod 600 ~/.mpd.conf". The secret word shouldn't be a login password, but can be anything you like: "secretword=VikingsOverPackers" is just as good. if ($TARGET == mpi) then # # Run outside of the batch schedular Sun Grid Engine (SGE) # by faking SGE's host assignment file: $TMPDIR/machines. # This script can be executed interactively on the first # compute node mentioned in this fake 'machines' file. set TMPDIR=$SCR # perhaps SGE would assign us two node names... echo "compute-0-1" > $TMPDIR/machines echo "compute-0-2" >> $TMPDIR/machines # or if you want to use these four nodes... #--echo "compute-0-0" > $TMPDIR/machines #--echo "compute-0-1" >> $TMPDIR/machines #--echo "compute-0-2" >> $TMPDIR/machines #--echo "compute-0-3" >> $TMPDIR/machines # # besides the usual three arguments to 'rungms' (see top), # we'll pass in a "processers per node" value. This could # be a value from 1 to 8 on our 8-way nodes. set PPN=$4 # # Allow for compute process and data servers (one pair per core) # @ NPROCS = $NCPUS + $NCPUS # # MPICH2 kick-off is guided by two disk files (A and B). # # A. build HOSTFILE, saying which nodes will be in our MPI ring # setenv HOSTFILE $SCR/$JOB.nodes.mpd if (-e $HOSTFILE) rm $HOSTFILE touch $HOSTFILE # if ($NCPUS == 1) then # Serial run must be on this node itself! echo `hostname` >> $HOSTFILE set NNODES=1 else # Parallel run gets node names from SGE's assigned list, # which is given to us in a disk file $TMPDIR/machines. uniq $TMPDIR/machines $HOSTFILE set NNODES=`wc -l $HOSTFILE` set NNODES=$NNODES[1] endif # uncomment these if you are still setting up... #--echo '------------' #--echo HOSTFILE $HOSTFILE contains #--cat $HOSTFILE #--echo '------------' # # B. the next file forces explicit "which process on what node" rules. # setenv PROCFILE $SCR/$JOB.processes.mpd if (-e $PROCFILE) rm $PROCFILE touch $PROCFILE # if ($NCPUS == 1) then @ NPROCS = 2 echo "-n $NPROCS -host `hostname` /home/mike/gamess/gamess.$VERNO.x" >> $PROCFILE else @ NPROCS = $NCPUS + $NCPUS if ($PPN == 0) then # when our SGE is just asked to assign so many cores from one # node, PPN=0, we are launching compute processes and data # servers within our own node...simple. echo "-n $NPROCS -host `hostname` /home/mike/gamess/gamess.$VERNO.x" >> $PROCFILE else # when our SGE is asked to reserve entire nodes, 1<=PPN<=8, # the $TMPDIR/machines contains the assigned node names # once and only once. We want PPN compute processes on # each node, and of course, PPN data servers on each. # Although DDI itself can assign c.p. and d.s. to the # hosts in any order, the GDDI logic below wants to have # all c.p. names before any d.s. names in the $HOSTFILE. # # thus, lay down a list of c.p. @ PPN2 = $PPN + $PPN @ n=1 while ($n <= $NNODES) set host=`sed -n -e "$n p" $HOSTFILE` set host=$host[1] echo "-n $PPN2 -host $host /home/mike/gamess/gamess.$VERNO.x" >> $PROCFILE @ n++ end endif endif # uncomment these if you are still setting up... #--echo PROCFILE $PROCFILE contains #--cat $PROCFILE #--echo '------------' # echo "MPICH2 will be running GAMESS on $NNODES nodes." echo "The binary to be kicked off by 'mpiexec' is gamess.$VERNO.x" echo "MPICH2 will run $NCPUS compute processes and $NCPUS data servers." if ($PPN > 0) echo "MPICH2 will be running $PPN of each process per node." # # Next sets up MKL usage setenv LD_LIBRARY_PATH /opt/intel/mkl/10.0.3.020/lib/em64t # force old MKL versions (version 9 and older) to run single threaded setenv MKL_SERIAL YES # setenv LD_LIBRARY_PATH /opt/mpich2/gnu/lib:$LD_LIBRARY_PATH set path=(/opt/mpich2/gnu/bin $path) # echo The scratch disk space on each node is $SCR chdir $SCR # # Now, at last, we can actually launch the processes, in 3 steps. # a) bring up a 'ring' of MPI demons # set echo mpdboot --rsh=ssh -n $NNODES -f $HOSTFILE # # b) kick off the compute processes and the data servers # mpiexec -configfile $PROCFILE < /dev/null # # c) shut down the 'ring' of MPI demons # mpdallexit unset echo # # HOSTFILE is passed to the file erasing step below rm -f $PROCFILE endif |
4楼2011-09-29 09:20:52
|
请指导一下,rungms关于mpi的修改,谢谢!! 实验室的mpd一直在正常运行了,不需要再启动mpd进程了,实在不知这里该如何修改 [u06@pc07 tests]$ ../rungms exam01.inp ----- GAMESS execution script ----- This job is running on host pc07 under operating system Linux at 2011年 09月 29日 星期四 10:50:47 CST Available scratch disk space (Kbyte units) at beginning of the job is 文件系统 1K-块 已用 可用 已用% 挂载点 store:/data 2536545984 1253686304 1154010560 53% /home cp exam01.inp /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.F05 unset echo setenv ERICFMT /home/u06/lammps/gamess/GAMESS/gamess/u06/ericfmt.dat setenv MCPPATH /home/u06/lammps/gamess/GAMESS/gamess/u06/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null ....... setenv GMCDIN /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.F97 setenv GMC2SZ /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.F98 setenv GMCCCS /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.F99 unset echo Intel MPI (iMPI) will be running GAMESS on 1 nodes. The binary to be kicked off by 'mpiexec' is gamess.00.x iMPI will run 1 compute processes and 1 data servers. The scratch disk space on each node is /home/u06/lammps/gamess/GAMESS/gamess/u06 /home/u06/lammps/mpich2/bin/mpdroot: open failed for root's mpd conf filempiexec_pc07 (__init__ 1208): forked process failed; status=255 ----- accounting info ----- Files used on the master node pc07 were: -rw-r--r-- 1 u06 usbfs 1136 09-29 10:20 /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.F05 -rw-r--r-- 1 u06 usbfs 5 09-29 10:20 /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.nodes.mpd -rw-r--r-- 1 u06 usbfs 66 09-29 10:20 /home/u06/lammps/gamess/GAMESS/gamess/u06/exam01.processes.mpd 2011年 09月 29日 星期四 10:50:49 CST 0.204u 0.084s 0:01.71 16.3% 0+0k 0+0io 18pf+0w [u06@pc07 tests]$ [ Last edited by xiaowu787 on 2011-9-29 at 10:20 ] |
5楼2011-09-29 10:16:42
7楼2016-12-15 21:49:44
简单回复
神威杰6楼
2013-10-25 17:35
回复
xiaowu787(金币+1): 谢谢参与









回复此楼
可以发个安装教程给我吗?