added torque submission scripts

This commit is contained in:
Stephen Mardson McQuay 2011-05-24 18:40:17 -06:00
parent 4d60ca0c3c
commit 621e4c5303
2 changed files with 27 additions and 0 deletions

11
bin/minion.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
export LD_LIBRARY_PATH=/usr/mpi/fsl_openmpi_gcc-1.4.2/lib:/opt/intel/mkl/10.2.5.035/lib/em64t:/opt/intel/Compiler/11.1/072/lib/intel64:/opt/intel/Compiler/11.1/072/ipp/em64t/sharedlib:/opt/intel/Compiler/11.1/072/tbb/intel64/cc4.1.0_libc2.4_kernel2.6.16.21/lib:/opt/intel/Compiler/11.1/072/lib/intel64:/opt/intel/Compiler/11.1/072/ipp/em64t/sharedlib:/opt/intel/Compiler/11.1/072/tbb/intel64/cc4.1.0_libc2.4_kernel2.6.16.21/lib:/usr/local/cuda/lib64
PYTHON=/fslhome/smm58/research/bin/python
SCRIPT=/fslhome/smm58/src/research/bin/minion.py
OPTIONS='-v -p 6667'
SERVER=bigmemssh
INPUT=/fslhome/smm58/compute/gmsh/gmsh.3D.1.msh
$PYTHON $SCRIPT $OPTIONS $SERVER $INPUT

16
bin/submit.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
#PBS -l procs=2,pmem=1gb,walltime=01:00:00,feature='!harpertown'
#PBS -N scalability-2
#PBS -m bea
#PBS -M stephen@mcquay.me
# ,qos=test
# for parallel submission:
/usr/bin/pbsdsh /fslhome/smm58/bin/minion.sh
# serial:
# /fslhome/smm58/bin/slave.sh
exit 0