forked from HPCNow/SubmitScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamess-2010r2-smp-iqtc04.sub
40 lines (40 loc) · 1.28 KB
/
gamess-2010r2-smp-iqtc04.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
#!/bin/bash
##########################################
# SGE options and parameters
##########################################
# (1) Name of the job
#$ -N GAMESS-prova01
# (2) Requested resources
# Parallel Environment and number of cores
#$ -pe smp 1
# Queue
#$ -q iqtc04.q
# Shell
#$ -S /bin/bash
# (3) Output files
#$ -cwd
#$ -o gamess01.out
#$ -e gamess01.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 gamess/2010r2_intel11.1_mkl11.1
##########################################
# Copying files needed
##########################################
# We copy the inputs to the directory where the jobs will run
cd $TMPDIR
cp -r $HOME/bench/GAMESS/XRQTC.Gamess_MCQDPT/input/XRQTC.Gamess_MCQDPT.inp .
##########################################
# Run the job
##########################################
rungms XRQTC.Gamess_MCQDPT.inp 00 $NSLOTS >& XRQTC.Gamess_MCQDPT.log
##########################################
# Copy the results to our home directory
##########################################
cp -r $TMPDIR $HOME/tests.out