From aff54e2eb8b8fa3c152ce25261754d25bfce8269 Mon Sep 17 00:00:00 2001 From: casparvl casparvl Date: Thu, 5 Dec 2024 15:46:42 +0000 Subject: [PATCH 1/3] Fix MPI issue with workaround --- config/azure_mc.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/azure_mc.py b/config/azure_mc.py index c9c9eea6..8d25c373 100644 --- a/config/azure_mc.py +++ b/config/azure_mc.py @@ -34,6 +34,11 @@ 'access': ['--partition=x86-64-amd-zen4-node', '--export=NONE'], 'descr': 'Zen4, 16 cores, 30 GB', 'prepare_cmds': [ + # Avoid https://www.eessi.io/docs/known_issues/eessi-2023.06/#eessi-production-repository-v202306 + 'export OMPI_MCA_btl=^uct,ofi' + 'export OMPI_MCA_pml=ucx' + 'export OMPI_MCA_mtl=^ofi' + # Use override to avoid fallback to zen3 'export EESSI_SOFTWARE_SUBDIR_OVERRIDE=x86_64/amd/zen4', common_eessi_init(), # Required when using srun as launcher with --export=NONE in partition access, From d3da4a16c063ac61b428a5abefabb02287c65477 Mon Sep 17 00:00:00 2001 From: casparvl casparvl Date: Thu, 5 Dec 2024 15:51:32 +0000 Subject: [PATCH 2/3] Fix too long line --- config/azure_mc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/azure_mc.py b/config/azure_mc.py index 8d25c373..4a49778e 100644 --- a/config/azure_mc.py +++ b/config/azure_mc.py @@ -34,7 +34,8 @@ 'access': ['--partition=x86-64-amd-zen4-node', '--export=NONE'], 'descr': 'Zen4, 16 cores, 30 GB', 'prepare_cmds': [ - # Avoid https://www.eessi.io/docs/known_issues/eessi-2023.06/#eessi-production-repository-v202306 + # Avoid + # https://www.eessi.io/docs/known_issues/eessi-2023.06/#eessi-production-repository-v202306 'export OMPI_MCA_btl=^uct,ofi' 'export OMPI_MCA_pml=ucx' 'export OMPI_MCA_mtl=^ofi' From 54dbb2eb4a215e0a22293ee5c9fa02e3aa2e826b Mon Sep 17 00:00:00 2001 From: casparvl casparvl Date: Thu, 5 Dec 2024 15:52:35 +0000 Subject: [PATCH 3/3] Remove trailing whitespace --- config/azure_mc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/azure_mc.py b/config/azure_mc.py index 4a49778e..3945ce52 100644 --- a/config/azure_mc.py +++ b/config/azure_mc.py @@ -34,7 +34,7 @@ 'access': ['--partition=x86-64-amd-zen4-node', '--export=NONE'], 'descr': 'Zen4, 16 cores, 30 GB', 'prepare_cmds': [ - # Avoid + # Avoid # https://www.eessi.io/docs/known_issues/eessi-2023.06/#eessi-production-repository-v202306 'export OMPI_MCA_btl=^uct,ofi' 'export OMPI_MCA_pml=ucx'