~ubuntu-branches/ubuntu/precise/code-saturne/precise

« back to all changes in this revision

Viewing changes to extras/batch/batch.PBS

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-24 00:00:08 UTC
  • mfrom: (6.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20111124000008-2vo99e38267942q5
Tags: 2.1.0-3
Install a missing file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------------
 
2
#
 
3
# Batch options for PBS or Torque (example: Clamart2 cluster)
 
4
# ===============================
 
5
#
 
6
#PBS -l nodes=4:ppn=2
 
7
#PBS -l walltime=1:00:00
 
8
#
 
9
#PBS -j eo
 
10
#PBS -N nameandcase
 
11
#
 
12
# -l nodes=    : number of nodes
 
13
# -l ppn=      : number of process per node
 
14
# -l walltime= : wall clock time (hh:mm:ss)
 
15
# -q queue     : queue name
 
16
# -N name      : job name
 
17
# -j eo        : to combine standard output and error
 
18
#
 
19
#-------------------------------------------------------------------------------
 
20
 
 
21
# Change to submission directory
 
22
cd $PBS_O_WORKDIR
 
23