/usr/share/code_saturne/batch/batch.SGE 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 22 23 24 25 26 | #-------------------------------------------------------------------------------
#
# Batch options for Sun Grid Engine (Oracle Grid Engine, Open Grid Engine, ...)
# =================================
#
#$ -pe mpi* 4
#$ -l h_rt=1:00:00
#
#$ -j y
#$ -N nameandcase
#
# -pe : program_environment min_slots[-max_slots]
# -l h_rt= : wall clock time (hh:mm:ss)
# -q queue : queue name
# -N name : job name
# -o dir/file : redirect standard output
# -e dir/file : redirect standard error
# -j y : to combine standard output and error
#
# Note that the program environment defined by the -pe option is site-specific;
# wildcards are allowed. "qconf -spl" will return a list of valid pe's.
#
#-------------------------------------------------------------------------------
# Change to submission directory
if test -n "$SGE_O_WORKDIR" ; then cd $SGE_O_WORKDIR ; fi
|