-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #762 from pmoris/vsc_calcua_contact
Fix vsc_calcua contact details on website
- Loading branch information
Showing
1 changed file
with
2 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,7 +97,8 @@ singularity { | |
|
||
// Shared profile settings | ||
params { | ||
config_profile_contact = "[email protected] (GitHub: @pmoris)" | ||
config_profile_contact = "GitHub: @pmoris - Email: [email protected]" | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware.html" | ||
} | ||
|
||
// Retrieve name of current partition via Slurm environment variable | ||
|
@@ -127,7 +128,6 @@ switch(partition) { | |
case "zen2": | ||
params { | ||
config_profile_description = "Zen2 profile for use on the Vaughan cluster of the CalcUA VSC HPC." | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware/vaughan_hardware.html" | ||
max_memory = slurm_scheduling ? 240.GB : get_allocated_mem(240) // 256 GB (total) - 16 GB (buffer) | ||
max_cpus = slurm_scheduling ? 64 : get_allocated_cpus(64) | ||
max_time = 3.day | ||
|
@@ -140,7 +140,6 @@ switch(partition) { | |
case "zen3": | ||
params { | ||
config_profile_description = "Zen3 profile for use on the Vaughan cluster of the CalcUA VSC HPC." | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware/vaughan_hardware.html" | ||
max_memory = slurm_scheduling ? 240.GB : get_allocated_mem(240) // 256 GB (total) - 16 GB (buffer) | ||
max_cpus = slurm_scheduling ? 64 : get_allocated_cpus(64) | ||
max_time = 3.day | ||
|
@@ -153,7 +152,6 @@ switch(partition) { | |
case "zen3_512": | ||
params { | ||
config_profile_description = "Zen3_512 profile for use on the Vaughan cluster of the CalcUA VSC HPC." | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware/vaughan_hardware.html" | ||
max_memory = slurm_scheduling ? 496.GB : get_allocated_mem(496) // 512 GB (total) - 16 GB (buffer) | ||
max_cpus = slurm_scheduling ? 64 : get_allocated_cpus(64) | ||
max_time = 3.day | ||
|
@@ -166,7 +164,6 @@ switch(partition) { | |
case "broadwell": | ||
params { | ||
config_profile_description = "Broadwell profile for use on the Leibniz cluster of the CalcUA VSC HPC." | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware/leibniz_hardware.html" | ||
max_memory = slurm_scheduling ? 112.GB : get_allocated_mem(112) // 128 GB (total) - 16 GB (buffer) | ||
max_cpus = slurm_scheduling ? 28 : get_allocated_cpus(28) | ||
max_time = 3.day | ||
|
@@ -179,7 +176,6 @@ switch(partition) { | |
case "broadwell_256": | ||
params { | ||
config_profile_description = "Broadwell_256 profile for use on the Leibniz cluster of the CalcUA VSC HPC." | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware/leibniz_hardware.html" | ||
max_memory = slurm_scheduling ? 240.GB : get_allocated_mem(240) // 128 GB (total) - 16 GB (buffer) | ||
max_cpus = slurm_scheduling ? 28 : get_allocated_cpus(28) | ||
max_time = 3.day | ||
|
@@ -192,7 +188,6 @@ switch(partition) { | |
case "skylake": | ||
params { | ||
config_profile_description = "Skylake profile for use on the Breniac (former Hopper) cluster of the CalcUA VSC HPC." | ||
config_profile_url = "https://docs.vscentrum.be/antwerp/tier2_hardware/breniac_hardware.html" | ||
max_memory = slurm_scheduling ? 176.GB : get_allocated_mem(176) // 192 GB (total) - 16 GB (buffer) | ||
max_cpus = slurm_scheduling ? 28 : get_allocated_cpus(28) | ||
max_time = 7.day | ||
|