##!/bin/bash # Use Bash Shell #$ -V # Inherit the submission environment #$ -cwd # Start job in submission directory #$ -N pvserver # Job Name #$ -j y # combine stderr & stdout into stdout #$ -o $JOB_NAME.o$JOB_ID # Name of the output file (eg. myMPI.oJobID) #$ -pe 16way 16 # Requests 16 cores/node, 16 cores total #$ -q development # Queue name #$ -l h_rt=00:30:00 # Run time (hh:mm:ss) - 0.5 hours ##$ -M # Email at Begin/End of job ##$ -m be # Email at Begin/End of job #$ -A 20081023DATA # Account to charge to ibrun pvserver