File: batch.SGE

package info (click to toggle)
code-saturne 5.3.2%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 76,868 kB
  • sloc: ansic: 338,582; f90: 118,487; python: 65,227; makefile: 4,429; cpp: 3,826; xml: 3,078; sh: 1,205; lex: 170; yacc: 100
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