Skip to content

Commit

Permalink
Merge branch 'main' into setuptools_scm_versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
casparvl authored Sep 27, 2024
2 parents 0ad305b + e944a49 commit 5bca5bb
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CI/run_reframe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if [ -z "${EESSI_TESTSUITE_URL}" ]; then
EESSI_TESTSUITE_URL='https://github.com/EESSI/test-suite.git'
fi
if [ -z "${EESSI_TESTSUITE_BRANCH}" ]; then
EESSI_TESTSUITE_BRANCH='v0.3.2'
EESSI_TESTSUITE_BRANCH='v0.4.0'
fi
if [ -z "${EESSI_CVMFS_REPO}" ]; then
export EESSI_CVMFS_REPO=/cvmfs/software.eessi.io
Expand Down
29 changes: 29 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
This file contains a description of the major changes to the EESSI test suite.
For more detailed information, please see the git log.

v0.4.0 (26 September 2024)
--------------------------

This is a minor release of the EESSI test-suite

New tests:

* PyTorch (with torchvision) (#130)
* LAMMPS (#131, #169)
* CP2K (#133)

Bug fixes:
* Find and report duplicate modules (#167)
* Specify memory as an extra resource in all ReFrame configs (#180)
* Make req_memory_per_node hook print a warning if memory resource is not configured in ReFrame config (#182)
* No longer test import of eessi.testsuite.utils directly in CI, as it fails (by design) for the ReFrame 4.6.2 version deployed in EESSI (#183)

Other updates:
* mpi4py reduction test for tutorial (#149, #172), to accompany [documentation](https://www.eessi.io/docs/test-suite/writing-portable-tests/) on writing portable tests for the EESSI test suite
* Various updates to Snellius ReFrame config (#165, #168, #187, #188)
* Make the use of EESSI optional in common_eessi_init, to better support testing of local software stacks (#166)
* Remove hard-coded SLURM account from karolina and hortense configs in favour of using the `$SBATCH_ACCOUNT` environment variable (#171)
* Add ReFrame config and CI config for EESSI Azure build cluster (#173, #176, #186)
* Add hook for measuring memory usage in a job (#174)
* Bump default ReFrame version used in CI config to 4.6.2 (#175)
* Use ReFrame warning's to print warnings, amking them easier to spot (#178)
* Limit runtime of ReFrame command in in CI config (#179)
* Add release notes and bump versions (#189)

v0.3.2 (29 June 2024)
---------------------

Expand Down
8 changes: 6 additions & 2 deletions config/azure_mc.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
'export SLURM_EXPORT_ENV=ALL'
],
'extras': {
'mem_per_node': 768000
# For some reason, we cannot ask for the full amount configured as RealMemory in
# /etc/slurm/nodes.conf, so we ask slightly less
'mem_per_node': 767480
},
},
{
Expand All @@ -57,7 +59,9 @@
'export SLURM_EXPORT_ENV=ALL'
],
'extras': {
'mem_per_node': 64000
# For some reason, we cannot ask for the full amount configured as RealMemory in
# /etc/slurm/nodes.conf, so we ask slightly less
'mem_per_node': 63480
},
},
]
Expand Down
7 changes: 6 additions & 1 deletion config/surf_snellius.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@
{
'name': 'genoa',
'scheduler': 'slurm',
'prepare_cmds': [common_eessi_init()],
'prepare_cmds': [
# EESSI init script (for now) falls back to zen3, since the zen4 is incomplete
# But, we want to really test the zen4 branch on these nodes
'export EESSI_SOFTWARE_SUBDIR_OVERRIDE=x86_64/amd/zen4',
common_eessi_init()
],
'launcher': 'mpirun',
'access': ['-p genoa', '--export=None'],
'environs': ['default'],
Expand Down

0 comments on commit 5bca5bb

Please sign in to comment.