1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#-------------------------------------------------------------------------------
#
# Batch options for Platform LSF
# ==============================
#
#BSUB -n 2
#BSUB -W 00:05
#BSUB -o nameandcaseo.%J
#BSUB -e nameandcasee.%J
#BSUB -J nameandcase
#
# -n : number of processes (optionally: nprocs_min, nprocs_max)
# -W : walltime as hh:mm
# -o : output file name
# -e : error file name
# -J : job name
#
#-------------------------------------------------------------------------------
# Change to submission directory
if test -n "$LS_SUBCWD" ; then cd $LS_SUBCWD ; fi
|