| 5 | 1/1 | 返回列表 |
| 查看: 1509 | 回復(fù): 9 | |||
| 當(dāng)前主題已經(jīng)存檔。 | |||
| 【有獎(jiǎng)交流】積極回復(fù)本帖子,參與交流,就有機(jī)會(huì)分得作者 zhangfq7112 的 50 個(gè)金幣 | |||
| 當(dāng)前只顯示滿足指定條件的回帖,點(diǎn)擊這里查看本話題的所有回帖 | |||
zhangfq7112銀蟲 (正式寫手)
|
[交流]
【求助】,Linux Cluster下ADF 2007遞交任務(wù)的腳本
|
||
| 求Linux Cluster下ADF 2007遞交任務(wù)的腳本及所涉及的細(xì)節(jié),贈(zèng)金幣50! |
鐵桿木蟲 (著名寫手)
|
ADF 2007.01 The Amsterdam Density Functional (ADF) package is software for first-principles electronic structure calculations. ADF is used by academic and industrial researchers worldwide in such diverse fields as pharmaco-chemistry and materials science. It is currently particularly popular in the research areas of: . Homogeneous and heterogeneous catalysis . Inorganic chemistry . Heavy element chemistry . Various types of spectroscopy . Biochemistry For further details please check the official website for the software, www.scm.com. ADF Availability@SERC: SERC has recently upgraded ADF software from version 2005.01 to 2007.01. The software is installed on SGI-Altix3700 (hostname: altix) and five SUN AMD Opteron based machines (hostnames: sunlx1_3 to sunlx1_7). The software is node-locked to these machines and hence the user can use the software only on these machines. Modules of ADF on SUN machines: ADF version 2007.99 BAND version 2007.99 ADFGUI version 2007.99 BANDGUI version 2007.99 GUI version 2007.99 Utils version 2007.99 ADF on these machines can be used to generate the ADF input files using appropriate GUIs. ADF jobs that need to use only a single processor can be submitted on the machines using PBSPro software. Module of ADF on SGI-Altix machine: ADF version 2007.99 BAND version 2007.99 Utils version 2007.99 SGI-Altix only supports compute modules of ADF. Users can submit parallel ADF jobs on this machine using PBSPro software. Procedure to use ADF SOFTWARE: Environment settings on SGI-Altix machine: (Example for csh/tcsh) setenv ADFHOME /home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01 setenv ADFBIN /home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01/bin setenv ADFRESOURCES /home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01/atomicdata setenv SCMLICENSE /home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01/license.txt Environment settings on SUN Opteron machines: setenv ADFHOME /home/pkg/lic/chemistry/adf/linux-em64/adf2007.01 setenv ADFBIN /home/pkg/lic/chemistry/adf/linux-em64/adf2007.01/bin setenv ADFRESOURCE /home/pkg/lic/chemistry/adf/linux-em64/adf2007.01/atomicdata setenv SCMLICENSE /home/pkg/lic/chemistry/adf/linux-em64/adf2007.01/license.txt One has to create a run file for using adf or band. Sample run scripts for band and adf are $ADFHOME/examples directory Using ADF on altix: On altix users have to submit jobs to PBS job scheduler. Users have to create a script file to submit to PBS batch system. Below is an example script that can be used to submit an ADF job using 8 cpus. -----------File myjob.sh------------------------------------- #!/bin/sh #PBS -l ncpus=8 ADFHOME=/home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01 ADFBIN=/home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01/bin ADFRESOURCES=/home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01/atomicdata SCMLICENSE=/home/pkg/lic/chemistry/adf/linux-ia64/adf2007.01/license.txt nproc=8 cd / ${ADFBIN}/adf -n ${nproc} -----------End of file myjob.sh------------------------------- This myjob.sh job script may be submitted to pbs using qsub command. Please note that the shell variable "nproc" has to be set equal to the number of processors that adf is going to use and this has also got to be equal to the "ncpus" PBS directive. Using ADF on sunlx machines: On the sunlx machines adf jobs can use only one cpu and are to be submitted through PBS. You may run adfGUI/bandGUI interactively on sunlx1_3 to sunlx1_7 machines locally. Below is an example script that can be used to submit an ADF job that is expected to consume approximately 16 hours of cpu-time. -----------File myjob.sh------------------------------------- #!/bin/sh #PBS -l cput=16:00:00 #PBS -l select=1:ADF=True ADFHOME=/home/pkg/lic/chemistry/adf/linux-em64/adf2007.01 ADFBIN=/home/pkg/lic/chemistry/adf/linux-em64/adf2007.01/bin ADFRESOURCES=/home/pkg/lic/chemistry/adf/linux-em64/adf2007.01/atomicdata SCMLICENSE=/home/pkg/lic/chemistry/adf/linux-em64/adf2007.01/license.txt nproc=1 cd / ${ADFBIN}/adf -n ${nproc} -----------End of file myjob.sh------------------------------- This myjob.sh job script may be submitted to pbs using qsub command. Please note that the shell variable "nproc" has to be set equal to the one for these machines. For any problems or help please contact HelpDesk@SERC by E-mail or phone (#444 within SERC). |
木蟲 (著名寫手)
苦逼青椒一枚
|
不是很清楚cluster與多核linux服務(wù)器的區(qū)別,就說說8核服務(wù)器上的吧 假設(shè)在/home/用戶名/1下有1.run、1.adf;/home/用戶名/2下有2.run、2.adf這兩個(gè)任務(wù),我沒有記錯(cuò)的話應(yīng)該是這樣的: 新建一個(gè)文件,輸入: /home/用戶名/1/1.run >/home/用戶名/1/1.out /home/用戶名/2/2.run >/home/用戶名/2/2.out 然后保存為123.x,用chmod命令修改權(quán)限,使其可執(zhí)行,然后在terminal里執(zhí)行123.x就是了 |
鐵桿木蟲 (著名寫手)
鐵桿木蟲 (著名寫手)
|
這是 http://www.serc.iisc.ernet.in/Co ... ftware/ADF2007.html google發(fā)現(xiàn)的。 |
| 最具人氣熱帖推薦 [查看全部] | 作者 | 回/看 | 最后發(fā)表 | |
|---|---|---|---|---|
|
[考研] 333求調(diào)劑 +3 | ALULU4408 2026-03-23 | 3/150 |
|
|---|---|---|---|---|
|
[考研] 求調(diào)劑一志愿武漢理工大學(xué)材料工程(085601) +3 | WW.' 2026-03-23 | 5/250 |
|
|
[考研] 316求調(diào)劑 +7 | 梁茜雯 2026-03-19 | 7/350 |
|
|
[考研] 310求調(diào)劑 +4 | baibai1314 2026-03-16 | 4/200 |
|
|
[考研] 求調(diào)劑一志愿海大,0703化學(xué)學(xué)碩304分,有大創(chuàng)項(xiàng)目,四級(jí)已過 +6 | 幸運(yùn)哩哩 2026-03-22 | 10/500 |
|
|
[考研] 一志愿華中農(nóng)業(yè)071010,總分320求調(diào)劑 +5 | 困困困困坤坤 2026-03-20 | 6/300 |
|
|
[考研] 260求調(diào)劑 +3 | 朱芷琳 2026-03-20 | 4/200 |
|
|
[考研] 280求調(diào)劑 +11 | 咕嚕曉曉 2026-03-18 | 12/600 |
|
|
[考研] 求調(diào)劑 +4 | 要好好無聊 2026-03-21 | 4/200 |
|
|
[考研] 材料學(xué)碩333求調(diào)劑 +3 | 北道巷 2026-03-18 | 3/150 |
|
|
[考研] 材料與化工(0856)304求 B區(qū) 調(diào)劑 +3 | 邱gl 2026-03-21 | 3/150 |
|
|
[考研] 求調(diào)劑 +6 | Mqqqqqq 2026-03-19 | 6/300 |
|
|
[考研] 機(jī)械專碩299求調(diào)劑至材料 +3 | kkcoco25 2026-03-16 | 4/200 |
|
|
[考研] 化學(xué)求調(diào)劑 +4 | 臨澤境llllll 2026-03-17 | 5/250 |
|
|
[考研] 求調(diào)劑,一志愿:南京航空航天大學(xué)大學(xué) ,080500材料科學(xué)與工程學(xué)碩,總分289分 +4 | @taotao 2026-03-19 | 4/200 |
|
|
[考研] 一志愿吉林大學(xué)材料學(xué)碩321求調(diào)劑 +11 | Ymlll 2026-03-18 | 15/750 |
|
|
[考研] 求調(diào)劑 +3 | @taotao 2026-03-20 | 3/150 |
|
|
[考研] 086500 325 求調(diào)劑 +3 | 領(lǐng)帶小熊 2026-03-19 | 3/150 |
|
|
[考研] 一志愿福大288有機(jī)化學(xué),求調(diào)劑 +3 | 小木蟲200408204 2026-03-18 | 3/150 |
|
|
[考研] 收復(fù)試調(diào)劑生 +4 | 雨后秋荷 2026-03-18 | 4/200 |
|