#!/bin/bash
########################################################################
# SUN Grid Engine job wrapper
# parallel job on parallel queue
########################################################################
#$ -N mno
#$ -pe mpi 5-100
#$ -q wp5
#$ -j y
#$ -M haule@physics.rutgers.edu
#$ -m e
#$ -v LMTO_DMFT_ROOT,LD_LIBRARY_PATH
########################################################################
# do NOT remove the following line!
source $TMPDIR/sge_init.sh
########################################################################

# run parallel qmc

/opt/mpich-1.2.7-gnu/bin/mpirun -np $NSLOTS -machinefile $TMPDIR/machines /usr/local/bin/mpi4py ./nopt.py > nohup.out 2>&1


