carputils
Doxygen code documentation for the python framework controlling openCARP
carputils
machines
marconi
Classes
|
Variables
carputils.machines.marconi Namespace Reference
Classes
class
Marconi
Run jobs on the MARCONI HPC Cluster.
More...
Variables
string
TEMPLATE
Variable Documentation
◆
TEMPLATE
string carputils.machines.marconi.TEMPLATE
Initial value:
1
=
"""#!/bin/bash --login
2
#PBS -N {jobID:.15s}
3
#PBS -l select={nnode}:ncpus=36:mpiprocs=36
4
#PBS -l walltime={walltime}
5
#PBS -A Pra15_3333
6
#PBS -m bea
7
#PBS -M {email}
8
9
# Make sure any symbolic links are resolved to absolute path
10
export PBS_O_WORKDIR=$(readlink -f $PBS_O_WORKDIR)
11
12
# Change to the directory that the job was submitted from
13
# (remember this should be on the /work filesystem)
14
cd $PBS_O_WORKDIR
15
16
# Set the number of threads to 1
17
# This prevents any system libraries from automatically
18
# using threading.
19
export OMP_NUM_THREADS=1
20
21
module load intel intelmpi
22
23
"""
Generated by
1.8.13