-
Notifications
You must be signed in to change notification settings - Fork 0
/
systems.py
23 lines (21 loc) · 1.2 KB
/
systems.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from experiment_manager import system
cc9 = system(ssh_target = "cc9", hostname = "cc-9.cs.uni-paderborn.de", username = "fepaje", workdir = "/home/fepaje/jobs", use_slurm = False, ramdisk_path = None, environment={
"FINN_XILINX_PATH": "/opt/Xilinx",
"FINN_DOCKER_GPU": "NULL",
"XILINXD_LICENSE_FILE": "[email protected]",
})
# /scratch/hpc-prf-radioml/felix/jobs
# /scratch/hpc-prf-ekiapp/felix/jobs
# /scratch/hpc-prf-ekiapp/flash_only/felix/jobs
n2 = system(ssh_target = "n2_prox", hostname = "cc-9.cs.uni-paderborn.de", username = "fepaje", workdir = "/scratch/hpc-prf-radioml/felix/jobs", use_slurm = True, ramdisk_path = "/dev/shm", environment={
"FINN_XILINX_PATH": "/opt/software/FPGA/Xilinx",
"FINN_DOCKER_GPU": "NULL",
"XILINXD_LICENSE_FILE": "[email protected]",
"XILINX_LOCAL_USER_DATA": "no",
"APPTAINER_CACHEDIR": "/scratch/hpc-prf-radioml/felix/APPTAINER_CACHE",
"APPTAINER_TMPDIR": "/scratch/hpc-prf-radioml/felix/APPTAINER_TMP",
"SINGULARITY_CACHEDIR": "/scratch/hpc-prf-radioml/felix/APPTAINER_CACHE",
"SINGULARITY_TMPDIR": "/scratch/hpc-prf-radioml/felix/APPTAINER_TMP",
"PYTHONUNBUFFERED": "TRUE",
"LC_ALL": "C",
})