/usr/share/code_saturne/batch/batch.LSF is in code-saturne-data 3.3.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #-------------------------------------------------------------------------------
#
# Batch options for LSF (example: CCRT's Platine)
# =====================
#
#BSUB -n 2
#BSUB -W 00:05
#BSUB -o nameandcaseo.%J
#BSUB -e nameandcasee.%J
#BSUB -J nameandcase
#
# -n : number of processors (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
|