forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from boegel/intel2017
fix icc/ifort/impi/imkl 2017.* versions, add intel/2017.00 definition + HPL 2.2
- Loading branch information
Showing
8 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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 @@ | ||
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': '2017.00'} | ||
toolchainopts = {'usempi': True} | ||
|
||
sources = [SOURCELOWER_TAR_GZ] | ||
source_urls = ['http://www.netlib.org/benchmark/%(namelower)s'] | ||
|
||
# fix Make dependencies, so parallel build also works | ||
patches = ['HPL_parallel-make.patch'] | ||
|
||
moduleclass = 'tools' |
2 changes: 1 addition & 1 deletion
2
...igs/i/icc/icc-2017.0.35-GCC-5.4.0-2.26.eb → ...gs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...i/ifort/ifort-2017.0.35-GCC-5.4.0-2.26.eb → .../ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...2017.0.98-iimpi-2017.00-GCC-5.4.0-2.26.eb → ...017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb
This file contains 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
6 changes: 3 additions & 3 deletions
6
...0.98-iccifort-2017.0.35-GCC-5.4.0-2.26.eb → ...098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb
This file contains 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
This file contains 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 = '2017.00' | ||
|
||
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/' | ||
description = """Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL.""" | ||
|
||
toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
||
compver = '2017.0.098' | ||
gccver = '5.4.0' | ||
binutilsver = '2.26' | ||
gccsuff = '-GCC-%s-%s' % (gccver, binutilsver) | ||
dependencies = [ | ||
('GCCcore', gccver), | ||
('binutils', binutilsver, '-GCCcore-%s' % gccver), | ||
('icc', compver, gccsuff), | ||
('ifort', compver, gccsuff), | ||
('impi', '2017.0.098', '', ('iccifort', '%s%s' % (compver, gccsuff))), | ||
('imkl', '2017.0.098', '', ('iimpi', version + gccsuff)), | ||
] | ||
|
||
moduleclass = 'toolchain' |