File: batch.SGE

package info (click to toggle)
code-saturne 4.3.3%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 77,992 kB
  • sloc: ansic: 281,257; f90: 122,305; python: 56,490; makefile: 3,915; xml: 3,285; cpp: 3,183; sh: 1,139; lex: 176; yacc: 101; sed: 16
file content (27 lines) | stat: -rw-r--r-- 882 bytes parent folder | download | duplicates (5)
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
27
#-------------------------------------------------------------------------------
#
# 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