Skip to content

Commit

Permalink
Merge branch '2023.06-software.eessi.io' of ssh://github.com/EESSI/so…
Browse files Browse the repository at this point in the history
…ftware-layer into eessi-2023.06-Redland/1.0.17-GCC/12.3.0
  • Loading branch information
Richard Top committed Sep 11, 2024
2 parents 45b28f0 + 9e363d7 commit 648c04f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion create_lmodsitepackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
-- If EESSI_PREFIX wasn't defined, we cannot check if this module was from the EESSI environment
-- In that case, we assume it isn't, otherwise EESSI_PREFIX would (probably) have been set
if eessi_prefix == nil then
return False
return false
else
-- NOTE: exact paths for site so may need to be updated later.
-- See https://github.com/EESSI/software-layer/pull/371
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ easyconfigs:
# https://github.com/easybuilders/easybuild-easyconfigs/pull/20841
from-commit: f0e91e6e430ebf902f7788ebb47f0203dee60649
- R-4.3.2-gfbf-2023a.eb
- Highway-1.0.4-GCCcore-12.3.0.eb
- Brunsli-0.1-GCCcore-12.3.0.eb:
options:
# https://github.com/easybuilders/easybuild-easyconfigs/pull/21366
from-commit: 1736a123b1685836452587a5c51793257570bb2d
4 changes: 2 additions & 2 deletions eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def pre_prepare_hook_highway_handle_test_compilation_issues(self, *args, **kwarg
Solve issues with compiling or running the tests on both
neoverse_n1 and neoverse_v1 with Highway 1.0.4 and GCC 12.3.0:
- for neoverse_n1 we set optarch to GENERIC
- for neoverse_v1 we completely disable the tests
- for neoverse_v1 and a64fx we completely disable the tests
cfr. https://github.com/EESSI/software-layer/issues/469
"""
if self.name == 'Highway':
Expand All @@ -342,7 +342,7 @@ def pre_prepare_hook_highway_handle_test_compilation_issues(self, *args, **kwarg
# note: keep condition in sync with the one used in
# post_prepare_hook_highway_handle_test_compilation_issues
if self.version in ['1.0.4'] and tcname == 'GCCcore' and tcversion == '12.3.0':
if cpu_target == CPU_TARGET_NEOVERSE_V1:
if cpu_target in [CPU_TARGET_A64FX, CPU_TARGET_NEOVERSE_V1]:
self.cfg.update('configopts', '-DHWY_ENABLE_TESTS=OFF')
if cpu_target == CPU_TARGET_NEOVERSE_N1:
self.orig_optarch = build_option('optarch')
Expand Down

0 comments on commit 648c04f

Please sign in to comment.