carputils
Doxygen code documentation for the python framework controlling openCARP
Classes | Variables
carputils.machines.archer_intel Namespace Reference

Classes

class  ArcherIntel
 Run jobs on the ARCHER UK National Supercomputing Service. More...
 

Variables

string TEMPLATE
 

Variable Documentation

◆ TEMPLATE

string carputils.machines.archer_intel.TEMPLATE
Initial value:
1 = """#!/bin/bash --login
2 #PBS -N {jobID:.15s}
3 #PBS -l select={nnode}
4 #PBS -l walltime={walltime}
5 #PBS -A e348
6 
7 # Make sure any symbolic links are resolved to absolute path
8 export PBS_O_WORKDIR=$(readlink -f $PBS_O_WORKDIR)
9 
10 # Change to the directory that the job was submitted from
11 # (remember this should be on the /work filesystem)
12 cd $PBS_O_WORKDIR
13 
14 # Set the number of threads to 1
15 # This prevents any system libraries from automatically
16 # using threading.
17 export OMP_NUM_THREADS=1
18 export KMP_AFFINITY=disabled
19 
20 """