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

Classes

class  ARCHER2E756
 Run on Archer2 Info https://www.archer2.ac.uk/. More...
 

Variables

string TEMPLATE
 

Variable Documentation

◆ TEMPLATE

string carputils.machines.archer2_e756.TEMPLATE
Initial value:
1 = """#!/bin/bash
2 #
3 #SBATCH --job-name={jobID}
4 #SBATCH --nodes={nnode}
5 #SBATCH --ntasks-per-node=128
6 #SBATCH --cpus-per-task=1
7 #SBATCH --output={jobID}.out
8 #SBATCH --mail-type=ALL
9 #SBATCH --mail-user={email}
10 #SBATCH --time={walltime}
11 #SBATCH --account=e756
12 #SBATCH --partition=standard
13 #SBATCH --qos=standard
14 
15 source {config}
16 
17 module load craype-network-ucx
18 module load cray-mpich-ucx
19 
20 export FI_OFI_RXM_SAR_LIMIT=64K
21 export SRUN_CPUS_PER_TASK=$SLURM_CPUS_PER_TASK
22 
23 # No Hybrid MPI/OpenMP
24 export OMP_NUM_THREADS=1
25 
26 """