Skip to content
Snippets Groups Projects
Verified Commit 6bc458b5 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

add slurm/charlicloud config for psmn debian11

parent e79307f2
No related branches found
No related tags found
No related merge requests found
...@@ -36,8 +36,8 @@ profiles { ...@@ -36,8 +36,8 @@ profiles {
} }
} }
podman { podman {
podman.enabled = true charliecloud.enabled = true
podman.cacheDir = "./bin/" charliecloud.cacheDir = "./bin/"
process { process {
errorStrategy = 'finish' errorStrategy = 'finish'
memory = '16GB' memory = '16GB'
...@@ -80,46 +80,39 @@ profiles { ...@@ -80,46 +80,39 @@ profiles {
} }
} }
psmn { psmn {
podman.enabled = true charliecloud.enabled = true
podman.cacheDir = "/Xnfs/abc/podman/" charliecloud.cacheDir = "/Xnfs/abc/charliecloud_img"
charliecloud.runOptions = "--bind /scratch:/scratch --bind /Xnfs:/Xnfs"
process{ process{
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' } errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
maxRetries = 3 maxRetries = 3
withLabel: big_mem_mono_cpus { withLabel: big_mem_mono_cpus {
executor = "slurm" executor = "slurm"
clusterOptions = "-cwd -V"
cpus = 1 cpus = 1
memory = "128GB" memory = "128GB"
time = "12h" time = "24h"
queue = "monointeldeb128,monointeldeb192" clusterOptions = "--partition=Lake"
} }
withLabel: big_mem_multi_cpus { withLabel: big_mem_multi_cpus {
executor = "sge" executor = "slurm"
clusterOptions = "-cwd -V"
cpus = 32 cpus = 32
memory = "192GB" memory = "192GB"
time = "24h" time = "24h"
queue = "CLG*,SLG*,Epyc*" clusterOptions = "--partition=Lake"
penv = "openmp32"
} }
withLabel: small_mem_mono_cpus { withLabel: small_mem_mono_cpus {
executor = "sge" executor = "slurm"
clusterOptions = "-cwd -V"
cpus = 1 cpus = 1
memory = "16GB" memory = "16GB"
time = "12h" time = "24h"
queue = "monointeldeb128,monointeldeb192" clusterOptions = "--partition=Lake"
} }
withLabel: small_mem_multi_cpus { withLabel: small_mem_multi_cpus {
executor = "sge" executor = "slurm"
clusterOptions = "-cwd -V"
cpus = 32 cpus = 32
memory = "16GB" memory = "16GB"
time = "24h" time = "24h"
queue = "CLG*,SLG*,Epyc*" clusterOptions = "--partition=Lake"
penv = "openmp32"
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment