#----- Icebox ScaLAPACK batch job sample script ----- # # In this script filename refers to the name used for the executable # file and workdir is the directory where executable filename is located. # # #PBS -q icebox #PBS -S /bin/bash #PBS -l nodes=4,walltime=1:00:00 #PBS -N test_scalapack #Change to working directory cd ~/workdir #Execute the job /uufs/icebox/sys/mpich/bin/mpirun -np 4 -nolocal -machinefile $PBS_NODEFILE ./filename # Find the output in user's workdir directory # #----- End of Icebox ScaLAPACK batch job -----