-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsubvLambda
executable file
·225 lines (174 loc) · 4.08 KB
/
subvLambda
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#!/bin/bash
dir=`pwd`
PGM_NAME="subv VASP submit script"
PGM_VERSION="1.0"
BINARY="vasp_std"
MODULE="vasp/mkl/intelmpi/intel/5.4.4-SuperHeavyD3_Lambda"
### SET DEFAULT VARIABLES
ncores_default=4
nnodes_default=2
#memory_default=4 ###default memory set to 2*ncores
jobtime_default=72
jobhold=""
holdid=""
debug=""
gpu=0
mpir="srun"
function usage
{
cat <<-EOF
$PGM_NAME $PGM_VERSION
Usage: $PGM_NAME [-j JOB_ID] [-m SIZE] [-N NAME] [-p CPUS] [-n NODES] [-a COPY BACK ALL FILES] INPUT_FILE
EOF
exit 2
}
function printExit
{
case $1 in
[iI]) echo INFO: "$2" ;;
[wW]) echo WARNING: "$2" ;;
[eE]) echo ERROR: "$2" ; exit 1 ;;
*) echo "$1" ;;
esac
}
### PROCESS OPTIONS
while getopts dg:hj:m:N:p:c:n:q:t: options ; do
case $options in
g) gpu=1
ngpu=$OPTARG
#mpir="mpiexec.hydra -n $ncores"
BINARY="vasp_gpu"
MODULE="vasp-gpu/mkl/intelmpi/intel/5.4.1"
;;
N) jobname=$OPTARG
;;
p) ncores=$OPTARG
;;
c) actual_ncores=$OPTARG
;;
n) nnodes=$OPTARG
;;
m) memory=$OPTARG
;;
j) holdid=$OPTARG
jobhold=1
echo "Jobhold not yet implemented."
exit 1
;;
d) debug=1
;;
q) queue=$OPTARG
;;
t) jobtime=$OPTARG
;;
h) usage
exit 0
;;
\?)
echo "Invalid option: -$OPTARG"
exit 1
;;
\:)
echo "Option -$OPTARG requires an argument."
exit 1
;;
*) usage
exit 1
;;
esac
done
shift $((OPTIND-1))
### CREATE DEFAULT JOBNAME
jobname_default="`echo $dir | sed "s/\/data\/$USER\//d/" | sed "s/\/home\/$USER\//h/ ; s/\//./g"`.$myname"
### PROCESS VARIABLES
if [ -z "$jobname" ]; then
jobname=$jobname_default
fi
if [ -z "$ncores" ]; then
ncores=$ncores_default
fi
if [ -z "$actual_ncores" ] ; then
actual_ncores=$ncores
fi
if [ -z "$nnodes" ]; then
nnodes=$nnodes_default
fi
if [ -z "$memory" ]; then
memory=2
fi
if [ -z "$jobtime" ]; then
jobtime=$jobtime_default
fi
### CONSTRUCT OUTPUT FILENAME
### CREATE OPTION STRING FOR QSUB
if [ -z "$holdid" ]; then
optionstring=""
else
optionstring=""
fi
### SET QUEUE TO DEFAULT IF $QUEUE IS EMPTY
if [ -z "$queue" ]; then
queue="short"
fi
### GET MAIL
mail=`cat /home/${USER}/.forward`
### CREATE INPUT SCRIPT FOR QSUB
cat <<EOT >> submit.sh
#!/bin/sh
#SBATCH --job-name=$jobname
#SBATCH -t 0-${jobtime}:00
#SBATCH -N $nnodes
#SBATCH -n $ncores
#SBATCH --mem-per-cpu=${memory}G
#SBATCH --mail-type=END
#SBATCH --mail-type=FAIL
#SBATCH -o /home/${USER}/err/vasp-%j
#SBATCH --mail-user=$mail
#SBATCH -p $queue
EOT
if [ "$gpu" -eq "1" ]; then
cat <<EOT >> submit.sh
#SBATCH --gres=gpu:$ngpu
EOT
fi
cat <<EOT >> submit.sh
echo This job was submitted from the computer:
echo \$SLURM_SUBMIT_HOST
echo and the directory:
echo \$SLURM_SUBMIT_DIR
echo
echo It is running on the compute node:
echo \$SLURM_CLUSTER_NAME
echo
echo The local scratch directory "(located on the compute node)" is:
echo \$SCRATCH
echo
module load $MODULE
module list 2>&1
echo
echo "---- The Job is executed at \$(date) on \$(hostname) ----"
# Execute the program
#cp -v * \$SLURM_SUBMIT_DIR
cd \$SLURM_SUBMIT_DIR
[ -e output_OLD ] && cp output_OLD output_OLDER
[ -e output ] && cp output output_OLD
[ -e XDATCAR_OLD ] && cp XDATCAR_OLD XDATCAR_OLDER
[ -e XDATCAR ] && cp XDATCAR XDATCAR_OLD
srun -n $actual_ncores $BINARY > output
echo "---- The Job has finished at \$(date) ----"
EOT
if [ -z $debug ]; then
sbatch $optionstring submit.sh
rm submit.sh
cat <<EOT
Job has been submitted.
Name: $jobname, #CPU_RESERVED: $ncores, #CPUS_USED: $actual_ncores, #Nodes: $nnodes, mem: $((${memory}*${ncores}))GB.
EOT
else
cat <<EOT
Job has been created. Submit file will be saved.
Name: $jobname, #CPU: $ncores, #Nodes: $nnodes, mem: $((${memory}*${ncores}))GB.
Submit with sbatch submit.sh!
EOT
fi
exit 0