#!/bin/sh
: The following is a template for job submission for the PBS
: Scheduler on bluegrit.cs.umbc.edu   qsub <this file>
#
: This defines the name of yur job
#PBS -N Schedule
: This is the path for output
#PBS -o /home/<your userid>/scheduleq.out
#PBS -e /home/<your userid>/scheduleq.err
#PBS -q workq
#PBS -l nodes=32:ppn=2
: This is augmented mpirun command, np = twice nodes
mpirun -np 64 -machinefile $PBS_NODEFILE /home/<your userid>/schedule