forked from HPCNow/SubmitScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamess_uk-7.0-smp-iqtc03.sub
112 lines (108 loc) · 2.25 KB
/
gamess_uk-7.0-smp-iqtc03.sub
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/bash
##########################################
# SGE options and parameters
##########################################
# (1) Name of the job
#$ -N gamess-uk
# (2) Requested resources
# Parallel Environment and number of cores
#$ -pe smp 8
# Queue
#$ -q iqtc03.q
# Shell
#$ -S /bin/bash
# (3) Output files
#$ -cwd
#$ -o Si8O13.out
#$ -e Si8O13.err
# (4) Remove the first '#' of the following 2 lines if you want to receive an email when the job ends.
##$ -m e
##$ -M [email protected]
##########################################
# User environment.
##########################################
# Load the modules needed
. /etc/profile.d/modules.sh
module load gamessuk/7.0_ompi
##########################################
# GAMESS-UK cruft
##########################################
jobname=Si8O13
root=Si8O13
executable=/aplic/gamess-uk/7.0_ompi/bin/gamess-uk
jobmode=openmpi
flist="-k ftn058=Si8O13.pun -k ed3"
nprocs=$NSLOTS
nnodes=$NSLOTS
jobtime=120
scratchtopdir=.
libdir=/aplic/gamess-uk/7.0_ompi/lib
tempdir=/tmp
homedir=/home/rporcel/subscripts/gamessuk/tst
stdout=0
listing=TEST.out
datain=1
procspernode=1
project=none
RUNGAMESS_DIR=/aplic/gamess-uk/7.0_ompi/rungamess
PROG=rungamess
queueargs=""
queue=iqtc03.q
debug=0
jobworkdir=
export jobname
export root
export executable
export jobmode
export flist
export nprocs
export nnodes
export jobtime
export scratchtopdir
export libdir
export tempdir
export homedir
export stdout
export listing
export datain
export procs_per_node
export project
export RUNGAMESS_DIR
export PROG
export queueargs
export queue
export debug
export jobworkdir
if test ${GAMESS_LIB:=unset} = unset
then
GAMESS_LIB=/aplic/gamess-uk/7.0_ompi/lib
export GAMESS_LIB
fi
if test ${GAMESS_SCR:=unset} = unset
then
GAMESS_SCR=.
export GAMESS_SCR
fi
if test ${GAMESS_WORK:=unset} = unset
then
GAMESS_WORK=
export GAMESS_WORK
fi
if test ${GAMESS_TMP:=unset} = unset
then
GAMESS_TMP=/tmp
export GAMESS_TMP
fi
if test ${GAMESS_PAREXE:=unset} = unset
then
GAMESS_PAREXE=/aplic/gamess-uk/7.0_ompi/bin/gamess-uk
export GAMESS_PAREXE
fi
if test ${GAMESS_EXE:=unset} = unset
then
GAMESS_EXE=/aplic/gamess-uk/7.0_ompi/bin/gamess-uk
export GAMESS_EXE
fi
export GAMESS_SCR=$TMPDIR
cp $homedir/$jobname.in $TMPDIR
$RUNGAMESS_DIR/rg_exe.$jobmode > $homedir/$jobname.out