-
Notifications
You must be signed in to change notification settings - Fork 769
{toolchain}[system/system] lompi v2025b, lmpich v2025b, llvm-compilers v20.1.8 #24481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
boegel
merged 6 commits into
easybuilders:develop
from
Thyre:20251107084126_new_pr_lompi2025b
Dec 7, 2025
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
65e75e0
adding easyconfigs: lompi-2025b.eb, lmpich-2025b.eb, llvm-compilers-2…
Thyre 7e8dabc
Fix llvm-compilers description
Thyre c8b2644
Cleanup MPICH EC
Thyre d564b13
add patch to disable flaky opal_path_nfs test in easyconfig for OpenM…
boegel 786cf3f
Reconfigure after adding patches
Thyre 34d5d3e
Add llvm-compilers to allowed Bundles without sanity check
Thyre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
easybuild/easyconfigs/l/llvm-compilers/llvm-compilers-20.1.8.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| easyblock = 'Bundle' | ||
|
|
||
| name = 'llvm-compilers' | ||
| version = '20.1.8' | ||
|
|
||
| homepage = 'https://gcc.gnu.org/' | ||
| description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, | ||
| as well as libraries for these languages (libstdc++, libgcj,...).""" | ||
|
|
||
| toolchain = SYSTEM | ||
|
|
||
| local_gcc_version = '14.3.0' | ||
| dependencies = [ | ||
| ('GCCcore', local_gcc_version), | ||
| ('binutils', '2.44', '', ('GCCcore', local_gcc_version)), | ||
| ('LLVM', version, '', ('GCCcore', local_gcc_version)), | ||
| ] | ||
|
|
||
| altroot = 'LLVM' | ||
| altversion = 'LLVM' | ||
|
|
||
| # this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) | ||
| moduleclass = 'compiler' | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| easyblock = 'Toolchain' | ||
|
|
||
| name = 'lmpich' | ||
| version = '2025b' | ||
|
|
||
| homepage = '(none)' | ||
| description = """LLVM based compiler toolchain, including MPICH for MPI support.""" | ||
|
|
||
| toolchain = SYSTEM | ||
|
|
||
| local_llvmver = '20.1.8' | ||
|
|
||
| dependencies = [ | ||
| ('llvm-compilers', local_llvmver), | ||
| ('MPICH', '4.3.2', '', ('llvm-compilers', local_llvmver)), | ||
| ] | ||
|
|
||
| moduleclass = 'toolchain' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| easyblock = 'Toolchain' | ||
|
|
||
| name = 'lompi' | ||
| version = '2025b' | ||
|
|
||
| homepage = '(none)' | ||
| description = """LLVM based compiler toolchain, including OpenMPI for MPI support.""" | ||
|
|
||
| toolchain = SYSTEM | ||
|
|
||
| local_llvmver = '20.1.8' | ||
|
|
||
| # compiler toolchain dependencies | ||
| dependencies = [ | ||
| ('llvm-compilers', local_llvmver), # includes both LLVM and binutils | ||
| ('OpenMPI', '5.0.8', '', ('llvm-compilers', local_llvmver)), | ||
| ] | ||
|
|
||
| moduleclass = 'toolchain' |
25 changes: 25 additions & 0 deletions
25
easybuild/easyconfigs/m/MPICH/MPICH-4.3.2-llvm-compilers-20.1.8.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name = 'MPICH' | ||
| version = '4.3.2' | ||
|
|
||
| homepage = 'https://www.mpich.org/' | ||
| description = """MPICH is a high-performance and widely portable implementation | ||
| of the Message Passing Interface (MPI) standard (MPI-1, MPI-2 and MPI-3).""" | ||
|
|
||
| toolchain = {'name': 'llvm-compilers', 'version': '20.1.8'} | ||
| # toolchainopts = { | ||
| # 'extra_fflags': '-w -fallow-argument-mismatch -O2' | ||
| # } | ||
Thyre marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| source_urls = ['https://www.mpich.org/static/downloads/%(version)s'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| checksums = ['47d774587a7156a53752218c811c852e70ac44db9c502dc3f399b4cb817e3818'] | ||
|
|
||
| dependencies = [ | ||
| ('hwloc', '2.12.1'), | ||
| ('UCX', '1.19.0'), | ||
| ] | ||
|
|
||
| # Also build (separate) MPI ABI | ||
| mpi_abi = True | ||
|
|
||
| moduleclass = 'mpi' | ||
48 changes: 48 additions & 0 deletions
48
easybuild/easyconfigs/o/OpenMPI/OpenMPI-5.0.8-llvm-compilers-20.1.8.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| name = 'OpenMPI' | ||
| version = '5.0.8' | ||
|
|
||
| homepage = 'https://www.open-mpi.org/' | ||
| description = """The Open MPI Project is an open source MPI-3 implementation.""" | ||
|
|
||
| toolchain = {'name': 'llvm-compilers', 'version': '20.1.8'} | ||
|
|
||
| source_urls = ['https://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads'] | ||
| sources = [SOURCELOWER_TAR_BZ2] | ||
| patches = [ | ||
| ('OpenMPI-5.0.7_build-with-internal-cuda-header.patch', 1), | ||
| 'OpenMPI-5.0.7_fix_gpfs_compatibility.patch', | ||
| ] | ||
| checksums = [ | ||
| {'openmpi-5.0.8.tar.bz2': '53131e1a57e7270f645707f8b0b65ba56048f5b5ac3f68faabed3eb0d710e449'}, | ||
| {'OpenMPI-5.0.7_build-with-internal-cuda-header.patch': | ||
| '14ffaf02a9c675ac66a2a9af727295179d4ce097174c88db59669d460d8c4da1'}, | ||
| {'OpenMPI-5.0.7_fix_gpfs_compatibility.patch': '9739134ce273a691c9deac6e410510653a88c1542b60dbf8789e4a423447d4f6'}, | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| ('pkgconf', '2.4.3'), | ||
| ('Autotools', '20250527'), | ||
Thyre marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('zlib', '1.3.1'), | ||
| ('hwloc', '2.12.1'), | ||
| ('libevent', '2.1.12'), | ||
| ('UCX', '1.19.0'), | ||
| ('libfabric', '2.1.0'), | ||
| ('PMIx', '5.0.8'), | ||
| ('PRRTE', '3.0.11'), | ||
| ('UCC', '1.4.4'), | ||
| ] | ||
|
|
||
| # CUDA related patches and custom configure option can be removed if CUDA support isn't wanted. | ||
| preconfigopts = 'clang -Iopal/mca/cuda/include -shared opal/mca/cuda/lib/cuda.c -o opal/mca/cuda/lib/libcuda.so && ' | ||
Thyre marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # Disable building Level Zero components of romio if system dependencies are picked up. Sources are not based on | ||
| # recent Level Zero interface anyway, so there's a high chance that builds fail. | ||
| # See https://github.com/open-mpi/ompi/issues/10235 | ||
| preconfigopts += 'sed -i "s/have_ze=yes/have_ze=no/" %(start_dir)s/3rd-party/romio341/mpl/configure && ' | ||
| configopts = '--with-cuda=%(start_dir)s/opal/mca/cuda --with-show-load-errors=no' | ||
| # Do not pick up the system library automatically | ||
| configopts += ' --without-xpmem' | ||
|
|
||
| moduleclass = 'mpi' | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.