-
Notifications
You must be signed in to change notification settings - Fork 781
intel/2017b toolchain definition (REVIEW) #4618
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
vanzod
merged 7 commits into
easybuilders:develop
from
boegel:20170519145158_new_pr_HPL22
Aug 31, 2017
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3a7a795
adding easyconfigs: HPL-2.2-intel-2017.05.eb, intel-2017.05.eb, icc-2…
boegel c679889
rename intel/2017.05 to intel/2017b, stick to GCC 6.3.0 as a base
boegel 72064f8
bump to GCC 6.4.0 as base for intel/2017b
boegel 42016d3
Merge branch 'develop' into 20170519145158_new_pr_HPL22
boegel 7f20ae1
add checksum in easyconfig for HPL 2.2 w/ intel/2017b
boegel dee6552
fix URL for EasyBuild website (hpcugent -> easybuilders)
boegel b979bc9
less promotional descriptions for Intel compilers, MPI & MKL
boegel 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,19 @@ | ||
| name = 'HPL' | ||
| version = '2.2' | ||
|
|
||
| homepage = 'http://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': '2017b'} | ||
| toolchainopts = {'usempi': True} | ||
|
|
||
| sources = [SOURCELOWER_TAR_GZ] | ||
| source_urls = ['http://www.netlib.org/benchmark/%(namelower)s'] | ||
| checksums = ['ac7534163a09e21a5fa763e4e16dfc119bc84043f6e6a807aba666518f8df440'] | ||
|
|
||
| # fix Make dependencies, so parallel build also works | ||
| patches = ['HPL_parallel-make.patch'] | ||
|
|
||
| moduleclass = 'tools' | ||
33 changes: 33 additions & 0 deletions
33
easybuild/easyconfigs/i/icc/icc-2017.4.196-GCC-6.4.0-2.28.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,33 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
|
|
||
| name = 'icc' | ||
| version = '2017.4.196' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-compilers/' | ||
| description = "Intel C and C++ compilers" | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
|
||
| sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_cpp.tgz'] | ||
|
|
||
| checksums = ['6b9b57dada0ec68e394866ec0a8b162c9233de18a7a6dd2dcc956d335e06acbc'] | ||
|
|
||
| gccver = '6.4.0' | ||
| binutilsver = '2.28' | ||
| versionsuffix = '-GCC-%s-%s' % (gccver, binutilsver) | ||
|
|
||
| dependencies = [ | ||
| ('GCCcore', gccver), | ||
| ('binutils', binutilsver, '', ('GCCcore', gccver)), | ||
| ] | ||
|
|
||
| # list of regex for components to install | ||
| # full list of components can be obtained from pset/mediaconfig.xml in unpacked sources | ||
| # cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide | ||
| components = ['intel-comp', 'intel-ccomp', 'intel-icc', 'intel-openmp', 'intel-ipsc?_', 'intel-gdb(?!.*mic)'] | ||
|
|
||
| dontcreateinstalldir = 'True' | ||
|
|
||
| license_file = HOME + '/licenses/intel/license.lic' | ||
|
|
||
| moduleclass = 'compiler' |
18 changes: 18 additions & 0 deletions
18
easybuild/easyconfigs/i/iccifort/iccifort-2017.4.196-GCC-6.4.0-2.28.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,18 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
| easyblock = 'Toolchain' | ||
|
|
||
| name = 'iccifort' | ||
| version = '2017.4.196' | ||
| versionsuffix = '-GCC-6.4.0-2.28' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/' | ||
| description = "Intel C, C++ & Fortran compilers" | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
|
||
| dependencies = [ | ||
| ('icc', version, versionsuffix), | ||
| ('ifort', version, versionsuffix), | ||
| ] | ||
|
|
||
| moduleclass = 'toolchain' |
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/i/ifort/ifort-2017.4.196-GCC-6.4.0-2.28.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,36 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
|
|
||
| name = 'ifort' | ||
| version = '2017.4.196' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-compilers/' | ||
| description = "Intel Fortran compiler" | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
|
||
| sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_fortran.tgz'] | ||
|
|
||
| checksums = ['0b6a222e015f776600b12b17c19506249c9e7691a8d287f44cd40a66ca9ac749'] | ||
|
|
||
| # remove dependency on intel-mpi-rt-mic | ||
| patches = ['ifort_2017_no_mpi_mic_dependency.patch'] | ||
|
|
||
| gccver = '6.4.0' | ||
| binutilsver = '2.28' | ||
| versionsuffix = '-GCC-%s-%s' % (gccver, binutilsver) | ||
|
|
||
| dependencies = [ | ||
| ('GCCcore', gccver), | ||
| ('binutils', binutilsver, '', ('GCCcore', gccver)), | ||
| ] | ||
|
|
||
| # list of regex for components to install | ||
| # full list of components can be obtained from pset/mediaconfig.xml in unpacked sources | ||
| # cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide | ||
| components = ['intel-comp', 'intel-fcomp', 'intel-ifort', 'intel-openmp', 'intel-ipsf?_', 'intel-gdb(?!.*mic)'] | ||
|
|
||
| dontcreateinstalldir = 'True' | ||
|
|
||
| license_file = HOME + '/licenses/intel/license.lic' | ||
|
|
||
| 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,20 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
| easyblock = "Toolchain" | ||
|
|
||
| name = 'iimpi' | ||
| version = '2017b' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/' | ||
| description = """Intel C/C++ and Fortran compilers, alongside Intel MPI.""" | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
|
||
| compver = '2017.4.196' | ||
| suff = '-GCC-6.4.0-2.28' | ||
| dependencies = [ | ||
| ('icc', compver, suff), | ||
| ('ifort', compver, suff), | ||
| ('impi', '2017.3.196', '', ('iccifort', '%s%s' % (compver, suff))), | ||
| ] | ||
|
|
||
| moduleclass = 'toolchain' |
34 changes: 34 additions & 0 deletions
34
easybuild/easyconfigs/i/imkl/imkl-2017.3.196-iimpi-2017b.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,34 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
|
|
||
| name = 'imkl' | ||
| version = '2017.3.196' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-mkl/' | ||
| description = """Intel Math Kernel Library (MKL), a library of highly optimized, | ||
| extensively threaded math functions, including BLAS, (Sca)LAPACK, Fast Fourier Transforms (FFT), etc.""" | ||
|
|
||
| toolchain = {'name': 'iimpi', 'version': '2017b'} | ||
|
|
||
| sources = ['l_mkl_%(version)s.tgz'] | ||
| checksums = ['fd7295870fa164d6138c9818304f25f2bb263c814a6c6539c9fe4e104055f1ca'] | ||
|
|
||
| dontcreateinstalldir = 'True' | ||
|
|
||
| interfaces = True | ||
|
|
||
| postinstallcmds = [ | ||
| # extract the examples | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_cluster_c.tgz -C %(installdir)s/mkl/examples/', | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_cluster_f.tgz -C %(installdir)s/mkl/examples/', | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_core_c.tgz -C %(installdir)s/mkl/examples/', | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_core_f.tgz -C %(installdir)s/mkl/examples/', | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_f95.tgz -C %(installdir)s/mkl/examples/', | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_mic_f.tgz -C %(installdir)s/mkl/examples/', | ||
| 'tar xvzf %(installdir)s/mkl/examples/examples_mic_c.tgz -C %(installdir)s/mkl/examples/', | ||
| ] | ||
|
|
||
| modextravars = { | ||
| 'MKL_EXAMPLES': '%(installdir)s/mkl/examples/', | ||
| } | ||
|
|
||
| moduleclass = 'numlib' |
31 changes: 31 additions & 0 deletions
31
easybuild/easyconfigs/i/impi/impi-2017.3.196-iccifort-2017.4.196-GCC-6.4.0-2.28.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,31 @@ | ||
| # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild | ||
|
|
||
| name = 'impi' | ||
| version = '2017.3.196' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-mpi-library/' | ||
| description = "Intel MPI Library, compatible with MPICH ABI" | ||
|
|
||
| toolchain = {'name': 'iccifort', 'version': '2017.4.196-GCC-6.4.0-2.28'} | ||
|
|
||
| sources = ['l_mpi_%(version)s.tgz'] | ||
|
|
||
| checksums = ['dad9efbc5bbd3fd27cce7e1e2507ad77f342d5ecc929747ae141c890e7fb87f0'] | ||
|
|
||
| dontcreateinstalldir = 'True' | ||
|
|
||
| components = ['intel-mpi', 'intel-psxe', 'intel-imb'] | ||
|
|
||
| # set up all the mpi commands to default to intel compilers | ||
| # set_mpi_wrappers_all = 'True' | ||
|
|
||
| postinstallcmds = [ | ||
| 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpich.so', | ||
| 'ln -s %(installdir)s/lib64/libmpigc4.so %(installdir)s/lib64/libmpichcxx.so', | ||
| 'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libfmpich.so', | ||
| 'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libmpichf90.so', | ||
| 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpl.so', | ||
| 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libopa.so' | ||
| ] | ||
|
|
||
| moduleclass = 'mpi' |
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,24 @@ | ||
| easyblock = 'Toolchain' | ||
|
|
||
| name = 'intel' | ||
| version = '2017b' | ||
|
|
||
| homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/' | ||
| description = "Compiler toolchain including Intel compilers, Intel MPI and Intel Math Kernel Library (MKL)." | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
|
||
| compver = '2017.4.196' | ||
| gccver = '6.4.0' | ||
| binutilsver = '2.28' | ||
| gccsuff = '-GCC-%s-%s' % (gccver, binutilsver) | ||
| dependencies = [ | ||
| ('GCCcore', gccver), | ||
| ('binutils', binutilsver, '-GCCcore-%s' % gccver), | ||
| ('icc', compver, gccsuff), | ||
| ('ifort', compver, gccsuff), | ||
| ('impi', '2017.3.196', '', ('iccifort', '%s%s' % (compver, gccsuff))), | ||
| ('imkl', '2017.3.196', '', ('iimpi', version)), | ||
| ] | ||
|
|
||
| moduleclass = 'toolchain' |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a checksum here.