#! /bin/sh
#
# An EXACT driver that runs a parallel code
#
host=`hostname`
echo "Starting a parallel code from $host"

case "$host" in
  bobo.sandia.gov)
	mpirun -np $*
	;;
  *)
	print "Guessing that we should use MPIRUN on $host"
	mpirun -np $*
esac
