forked from HPCNow/SubmitScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiesta-3.0-ompi-iqtc02_tcsh.sub
49 lines (45 loc) · 1.42 KB
/
siesta-3.0-ompi-iqtc02_tcsh.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
#!/bin/bash
##########################################
# SGE options and parameters
##########################################
# (1) Name of the job
#$ -N test_siesta_iqtc02
# (2) Recursos sol.licitats
#$ -pe ompi 4
# Queue
#$ -q iqtc02.q
# Shell
#$ -S /bin/tcsh
# (3) Output files
#$ -cwd
#$ -o siesta_iqtc02-4.out
#$ -e siesta_iqtc02-4.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]
#$ -S /bin/tcsh
##########################################
# User environment
##########################################
# Load the modules needed
. /etc/profile.d/modules.csh
module load siesta/3.0-rc2_paralel_ompi
set INPUT=SnO2FC.fdf
set OUTPUT=$INPUT.log
##########################################
# Copying files needed
##########################################
# We copy the inputs to the directory where the jobs will run
cp -r * $TMPDIR/
cd $TMPDIR
#cp -r $HOME/bench/SIESTA/XRQTC.SIESTA_SnO2_FCfullBZ/input/* .
##########################################
# Run the job
##########################################
setenv OMP_NUM_THREADS 1
mpirun -np $NSLOTS siesta < $INPUT > $OUTPUT
##########################################
# Copy the results to our home directory
##########################################
mkdir -p $HOME/bench/SIESTA/XRQTC.SIESTA_SnO2_FCfullBZ/OUT_iqtc02
cp -r $TMPDIR $HOME/bench/SIESTA/XRQTC.SIESTA_SnO2_FCfullBZ/OUT_iqtc02