#!/bin/csh # # SGE submit script for MSETUP on Jet (64-bit linux cluster) at NOAA SWPC # Google # "Where is an example of SGE submit script" site:noaa.gov for more info. # # Identify your project #$ -N MSETUP # # Set the account to "cmit2" #$ -A cmit2 # # Ask for 8 processors on the "wcomp" queue #$ -pe wcomp 8 # # Maximum wallclock time set to 30 minutes #$ -l h_rt=00:30:00 # # Make sure that the .e and .o file arrive in the working directory. #$ -cwd ################################################### # Executable commands go here. echo ---------------------------------------------- echo "STARTING THE JOB" #echo -n "NODEFILE:" #cat $SGE_NODEFILE | awk '{printf{"%s ", $1};}END{printf("\n");}' echo ---------------------------------------------- #/opt/mvapich/2-1.0_ofed-1.2.5.1/bin/mpirun -np 8 ./MSETUP > MSETUP.info mpirun -np 8 ./MSETUP > MSETUP.info