Newer
Older
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
# This is a sample PBS script. It will request 1 processor on 1 node
# for 4 hours.
#
# Request 1 processors on 1 node
#
#PBS -l nodes=1:ppn=1
#
# Request 4 hours of walltime
#
#PBS -l walltime=4:00:00
#
# Request 1 gigabyte of memory per process
#
#PBS -l pmem=1gb
#
# Request that regular output and terminal output go to the same file
#
#PBS -j oe
#
# The following is the body of the script. By default,
# PBS scripts execute in your home directory, not the
# directory from which they were submitted. The following
# line places you in the directory from which the job
# was submitted.
#
# cd $PBS_O_WORKDIR
cd $HOME/sane08/BETAG4/run
pwd
#
# Now we want to run the program "hello". "hello" is in
# the directory that this script is being submitted from,
# $PBS_O_WORKDIR.
#
echo " "
echo " "
echo "Job started on `hostname` at `date`"
BETA sane/para/para_1k_uniform_electron.mac
echo " "
echo "Job Ended at `date`"
echo " "