#!/bin/csh #PBS -V ### Job name #PBS -N MyOpenMPJobName ### Output files #PBS -j oe ### Mail to user #PBS -m ae ### Mail address for user #PBS -M Your-email-Address ### Request nodes : NOTE This is REQUIRED #PBS -l ncpus=XX,nodes=ppn=XX,mem=YYGB,walltime=HH:MM:SS ### Queue name #PBS -q aquila # This job's working directory echo Working directory is $PBS_O_WORKDIR cd $PBS_O_WORKDIR echo Running on host `hostname` echo Time is `date` setenv OMP_NUM_THREADS XX # Run the executable MyProgram+Arguments