-
Notifications
You must be signed in to change notification settings - Fork 762
{toolchain} intel/2021.09 + HPL 2.3 + HPCG 3.1 #14085
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 2 commits into
easybuilders:develop
from
SebastianAchilles:20211001135422_new_pr_intel202109
Oct 14, 2021
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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,17 @@ | ||
| name = 'HPCG' | ||
| version = '3.1' | ||
|
|
||
| homepage = 'https://software.sandia.gov/hpcg' | ||
| description = """The HPCG Benchmark project is an effort to create a more relevant metric for ranking HPC systems than | ||
| the High Performance LINPACK (HPL) benchmark, that is currently used by the TOP500 benchmark.""" | ||
|
|
||
| toolchain = {'name': 'intel', 'version': '2021.09'} | ||
| toolchainopts = {'usempi': True, 'openmp': True} | ||
|
|
||
| source_urls = ['http://www.hpcg-benchmark.org/downloads'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| checksums = ['33a434e716b79e59e745f77ff72639c32623e7f928eeb7977655ffcaade0f4a4'] | ||
|
|
||
| runtest = True | ||
|
|
||
| moduleclass = 'math' |
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,21 @@ | ||
| name = 'HPL' | ||
| version = '2.3' | ||
|
|
||
| homepage = 'https://www.netlib.org/benchmark/hpl/' | ||
| description = """HPL is a software package that solves a (random) dense linear system in double precision (64 bits) | ||
| arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available | ||
| implementation of the High Performance Computing Linpack Benchmark.""" | ||
|
|
||
| toolchain = {'name': 'intel', 'version': '2021.09'} | ||
| toolchainopts = {'usempi': True} | ||
|
|
||
| source_urls = ['https://www.netlib.org/benchmark/%(namelower)s'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| # fix Make dependencies, so parallel build also works | ||
| patches = ['HPL_parallel-make.patch'] | ||
| checksums = [ | ||
| '32c5c17d22330e6f2337b681aded51637fb6008d3f0eb7c277b163fadd612830', # hpl-2.3.tar.gz | ||
| '2a5bf9c4f328049828ddecec7ba3f05a9e25d236f4212747c53bd22fea80c5e6', # HPL_parallel-make.patch | ||
| ] | ||
|
|
||
| moduleclass = 'tools' |
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 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
| easyblock = 'Toolchain' | ||
|
|
||
| name = 'iimpi' | ||
| version = '2021.09' | ||
|
|
||
| homepage = 'https://software.intel.com/parallel-studio-xe' | ||
| description = """Intel C/C++ and Fortran compilers, alongside Intel MPI.""" | ||
|
|
||
| toolchain = SYSTEM | ||
|
|
||
| local_comp_ver = '2021.4.0' | ||
| dependencies = [ | ||
| ('intel-compilers', local_comp_ver), | ||
| ('impi', local_comp_ver, '', ('intel-compilers', local_comp_ver)), | ||
| ] | ||
|
|
||
| moduleclass = 'toolchain' |
14 changes: 14 additions & 0 deletions
14
easybuild/easyconfigs/i/imkl/imkl-2021.4.0-iimpi-2021.09.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,14 @@ | ||
| name = 'imkl' | ||
| version = '2021.4.0' | ||
|
|
||
| homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/onemkl.html' | ||
| description = "Intel oneAPI Math Kernel Library" | ||
|
|
||
| toolchain = {'name': 'iimpi', 'version': '2021.09'} | ||
|
|
||
| # see https://software.intel.com/content/www/us/en/develop/articles/oneapi-standalone-components.html | ||
| source_urls = ['https://registrationcenter-download.intel.com/akdlm/irc_nas/18222/'] | ||
| sources = ['l_onemkl_p_%(version)s.640_offline.sh'] | ||
| checksums = ['9ad546f05a421b4f439e8557fd0f2d83d5e299b0d9bd84bdd86be6feba0c3915'] | ||
|
|
||
| moduleclass = 'numlib' |
16 changes: 16 additions & 0 deletions
16
easybuild/easyconfigs/i/impi/impi-2021.4.0-intel-compilers-2021.4.0.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,16 @@ | ||
| name = 'impi' | ||
| version = '2021.4.0' | ||
|
|
||
| homepage = 'https://software.intel.com/content/www/us/en/develop/tools/mpi-library.html' | ||
| description = "Intel MPI Library, compatible with MPICH ABI" | ||
|
|
||
| toolchain = {'name': 'intel-compilers', 'version': '2021.4.0'} | ||
|
|
||
| # see https://software.intel.com/content/www/us/en/develop/articles/oneapi-standalone-components.html | ||
| source_urls = ['https://registrationcenter-download.intel.com/akdlm/irc_nas/18186/'] | ||
| sources = ['l_mpi_oneapi_p_%(version)s.441_offline.sh'] | ||
| checksums = ['cc4b7072c61d0bd02b1c431b22d2ea3b84b967b59d2e587e77a9e7b2c24f2a29'] | ||
|
|
||
| dependencies = [('UCX', '1.11.2')] | ||
|
|
||
| moduleclass = 'mpi' | ||
32 changes: 32 additions & 0 deletions
32
easybuild/easyconfigs/i/intel-compilers/intel-compilers-2021.4.0.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,32 @@ | ||
| name = 'intel-compilers' | ||
| version = '2021.4.0' | ||
|
|
||
| homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/hpc-toolkit.html' | ||
| description = "Intel C, C++ & Fortran compilers (classic and oneAPI)" | ||
|
|
||
| toolchain = SYSTEM | ||
|
|
||
| # see https://software.intel.com/content/www/us/en/develop/articles/oneapi-standalone-components.html | ||
| sources = [ | ||
| { | ||
| 'source_urls': ['https://registrationcenter-download.intel.com/akdlm/irc_nas/18209/'], | ||
| 'filename': 'l_dpcpp-cpp-compiler_p_%(version)s.3201_offline.sh', | ||
| }, | ||
| { | ||
| 'source_urls': ['https://registrationcenter-download.intel.com/akdlm/irc_nas/18210/'], | ||
| 'filename': 'l_fortran-compiler_p_%(version)s.3224_offline.sh', | ||
| }, | ||
| ] | ||
| checksums = [ | ||
| # l_dpcpp-cpp-compiler_p_2021.4.0.3201_offline.sh | ||
| '9206bff1c2fdeb1ca0d5f79def90dcf3e6c7d5711b9b5adecd96a2ba06503828', | ||
| 'de2fcf40e296c2e882e1ddf2c45bb8d25aecfbeff2f75fcd7494068d621eb7e0', # l_fortran-compiler_p_2021.4.0.3224_offline.sh | ||
| ] | ||
|
|
||
| local_gccver = '11.2.0' | ||
| dependencies = [ | ||
| ('GCCcore', local_gccver), | ||
| ('binutils', '2.37', '', ('GCCcore', local_gccver)), | ||
| ] | ||
|
|
||
| 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,21 @@ | ||
| easyblock = 'Toolchain' | ||
|
|
||
| name = 'intel' | ||
| version = '2021.09' | ||
|
|
||
| homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#intel-toolchain' | ||
| description = "Compiler toolchain including Intel compilers, Intel MPI and Intel Math Kernel Library (MKL)." | ||
|
|
||
| toolchain = SYSTEM | ||
|
|
||
| local_comp_ver = '2021.4.0' | ||
| local_gccver = '11.2.0' | ||
| dependencies = [ | ||
| ('GCCcore', local_gccver), | ||
| ('binutils', '2.37', '', ('GCCcore', local_gccver)), | ||
| ('intel-compilers', local_comp_ver), | ||
| ('impi', local_comp_ver, '', ('intel-compilers', local_comp_ver)), | ||
| ('imkl', local_comp_ver, '', ('iimpi', version)), | ||
| ] | ||
|
|
||
| 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,50 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'UCX' | ||
| version = '1.11.2' | ||
|
|
||
| homepage = 'https://www.openucx.org/' | ||
| description = """Unified Communication X | ||
| An open-source production grade communication framework for data centric | ||
| and high-performance applications | ||
| """ | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '11.2.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| source_urls = ['https://github.com/openucx/ucx/releases/download/v%(version)s'] | ||
| sources = ['%(namelower)s-%(version)s.tar.gz'] | ||
| patches = ['UCX-1.10.0-dynamic_modules.patch'] | ||
| checksums = [ | ||
| 'deebf86a5344fc2bd9e55449f88c650c4514928592807c9bc6fe4190e516c6df', # ucx-1.11.2.tar.gz | ||
| '3098c91f2aadc5f148466a2e8756769ad5e99f9515d8cfb6ad8a5712e7433408', # UCX-1.10.0-dynamic_modules.patch | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.37'), | ||
| ('Autotools', '20210726'), | ||
| ('pkg-config', '0.29.2'), | ||
| ] | ||
|
|
||
| osdependencies = [OS_PKG_IBVERBS_DEV] | ||
|
|
||
| dependencies = [ | ||
| ('zlib', '1.2.11'), | ||
| ('numactl', '2.0.14'), | ||
| ] | ||
|
|
||
| configure_cmd = "contrib/configure-release" | ||
|
|
||
| configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs ' | ||
| configopts += '--without-java --disable-doxygen-doc ' | ||
|
|
||
| buildopts = 'V=1' | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/ucx_info', 'bin/ucx_perftest', 'bin/ucx_read_profile'], | ||
| 'dirs': ['include', 'lib', 'share'] | ||
| } | ||
|
|
||
| sanity_check_commands = ["ucx_info -d"] | ||
|
|
||
| moduleclass = 'lib' |
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.