Skip to content

Commit

Permalink
Merge branch 'main' into osu
Browse files Browse the repository at this point in the history
  • Loading branch information
Satish Kamath committed Feb 1, 2024
2 parents 42af6c0 + eb35fee commit b5a126e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
EESSI_VERSION:
- "2023.06"
- "2021.12"
steps:
- name: Check out software-layer repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand All @@ -27,6 +27,20 @@ jobs:
run: |
source /cvmfs/pilot.eessi-hpc.org/versions/${{matrix.EESSI_VERSION}}/init/bash
# install latest version of EasyBuild, to install ReFrame with it,
# since that includes the ReFrame test library (hpctestlib) that we rely on
python3 -m venv venv
source venv/bin/activate
pip3 install easybuild
eb --version
export EASYBUILD_PREFIX=$HOME/easybuild
# need to force module generation with --module-only --force because 'pip check' fails
# in EESSI pilot 2021.12, see https://github.com/EESSI/compatibility-layer/issues/152
eb ReFrame-4.3.3.eb || eb ReFrame-4.3.3.eb --module-only --force
# load ReFrame
module use $HOME/easybuild/modules/all
module load ReFrame/4.3.3
reframe --version
Expand Down
4 changes: 2 additions & 2 deletions config/vsc_hortense.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def command(self, job):
'name': 'gpu_rome_a100_40gb',
'scheduler': 'slurm',
'prepare_cmds': ['source %s' % common_eessi_init()],
'access': hortense_access + ['--partition=cpu_rome_a100_40'],
'access': hortense_access + ['--partition=gpu_rome_a100_40'],
'environs': ['default'],
'descr': 'GPU nodes (A100 40GB)',
'max_jobs': 20,
Expand Down Expand Up @@ -154,7 +154,7 @@ def command(self, job):
'name': 'gpu_rome_a100_80gb',
'scheduler': 'slurm',
'prepare_cmds': ['source %s' % common_eessi_init()],
'access': hortense_access + ['--partition=cpu_rome_a100_80'],
'access': hortense_access + ['--partition=gpu_rome_a100_80'],
'environs': ['default'],
'descr': 'GPU nodes (A100 80GB)',
'max_jobs': 20,
Expand Down

0 comments on commit b5a126e

Please sign in to comment.