Skip to content

Commit

Permalink
Merge pull request #277 from ukri-excalibur/ic/limit_parallel_jobs
Browse files Browse the repository at this point in the history
Add configuration to limit parallel local jobs to 1
  • Loading branch information
ilectra authored Mar 4, 2024
2 parents 3ec4c11 + d32329c commit 0a60516
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions benchmarks/reframe_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def spack_root_to_path():
'name': 'archer2',
'descr': 'ARCHER2',
'hostnames': ['ln[0-9]+'],
'max_local_jobs': 1,
'modules_system': 'lmod',
'partitions': [
{
Expand Down Expand Up @@ -70,6 +71,7 @@ def spack_root_to_path():
'name': 'csd3-rocky8',
'descr': 'Cambridge Service for Data Driven Discovery - Rocky Linux 8 (RHEL8 compatible) nodes',
'hostnames': ['login-q-[0-4]+'],
'max_local_jobs': 1,
'modules_system': 'tmod4',
'partitions': [
{
Expand Down Expand Up @@ -126,6 +128,7 @@ def spack_root_to_path():
'name': 'csd3-centos7',
'descr': 'Cambridge Service for Data Driven Discovery - CentOS 7 (RHEL7 compatible) nodes',
'hostnames': ['login-p-[0-4]+'],
'max_local_jobs': 1,
'modules_system': 'tmod32',
'partitions': [
{
Expand Down Expand Up @@ -159,6 +162,7 @@ def spack_root_to_path():
'name': 'myriad',
'descr': 'Myriad',
'hostnames': ['login[0-9]+.myriad.ucl.ac.uk'],
'max_local_jobs': 1,
'partitions': [
{
'name': 'cpu',
Expand Down Expand Up @@ -265,6 +269,7 @@ def spack_root_to_path():
'name': 'isambard-macs',
'descr': 'Isambard 2 - Multi-Architecture Comparison System',
'hostnames': ['login-0[12].gw4.metoffice.gov.uk'],
'max_local_jobs': 1,
'partitions': [
{
'name': 'cascadelake',
Expand Down Expand Up @@ -362,6 +367,7 @@ def spack_root_to_path():
'name': 'isambard-a64fx',
'descr': 'A64FX nodes of Isambard 2',
'hostnames': ['gw4a64fxlogin[0-9]+'],
'max_local_jobs': 1,
'partitions': [
{
'name': 'a64fx',
Expand All @@ -385,6 +391,7 @@ def spack_root_to_path():
'name': 'isambard-phase3',
'descr': 'Isambard 2 Phase 3 system',
'hostnames': ['p3-login'],
'max_local_jobs': 1,
'modules_system': 'lmod',
'partitions': [
{
Expand Down Expand Up @@ -456,6 +463,7 @@ def spack_root_to_path():
'name': 'isambard-xci',
'descr': 'XCI - Marvell Thunder X2 nodes of Isambard 2',
'hostnames': ['xcil0[0-1]'],
'max_local_jobs': 1,
'partitions': [
{
'name': 'compute-node',
Expand All @@ -479,6 +487,7 @@ def spack_root_to_path():
'descr': 'COSMA',
'hostnames': ['login7[a-z].pri.cosma[0-9].alces.network'],
'modules_system': 'tmod4',
'max_local_jobs': 1,
'partitions': [
# https://www.dur.ac.uk/icc/cosma/cosma7/
{
Expand Down Expand Up @@ -537,6 +546,7 @@ def spack_root_to_path():
'name': 'cosma8',
'descr': 'COSMA',
'hostnames': ['login8[a-z].pri.cosma[0-9].alces.network'],
'max_local_jobs': 1,
'modules_system': 'tmod4',
'partitions': [
{
Expand Down Expand Up @@ -578,6 +588,7 @@ def spack_root_to_path():
'name': 'tursa',
'descr': 'Tursa',
'hostnames': ['tursa-login.*'],
'max_local_jobs': 1,
'partitions': [
{
'name': 'gpu',
Expand Down Expand Up @@ -611,6 +622,7 @@ def spack_root_to_path():
'name': 'dial2',
'descr': 'Dirac Data Intensive @ Leicester',
'hostnames': ['dirac0*'],
'max_local_jobs': 1,
'modules_system': 'lmod',
'partitions': [
{
Expand All @@ -634,6 +646,7 @@ def spack_root_to_path():
'name': 'dial3',
'descr': 'Dirac Data Intensive @ Leicester',
'hostnames': ['d3-login.*'],
'max_local_jobs': 1,
'modules_system': 'lmod',
'partitions': [
{
Expand All @@ -656,6 +669,7 @@ def spack_root_to_path():
'name': 'default',
'descr': 'Default system',
'hostnames': ['.*'],
'max_local_jobs': 1,
'partitions': [
{
'name': 'default',
Expand Down

0 comments on commit 0a60516

Please sign in to comment.