-
Notifications
You must be signed in to change notification settings - Fork 705
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 #2311 from boegel/intel2016a
- Loading branch information
Showing
4 changed files
with
80 additions
and
0 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.1' | ||
|
||
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': '2016a'} | ||
toolchainopts = {'optarch': True, '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' |
19 changes: 19 additions & 0 deletions
19
easybuild/easyconfigs/i/iimpi/iimpi-8.1.5-GCC-4.9.3-2.25.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
easyblock = "Toolchain" | ||
|
||
name = 'iimpi' | ||
version = '8.1.5' | ||
versionsuffix = '-GCC-4.9.3-2.25' | ||
|
||
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 = '2016.1.150' | ||
dependencies = [ | ||
('icc', compver, versionsuffix), | ||
('ifort', compver, versionsuffix), | ||
('impi', '5.1.2.150', '', ('iccifort', '%s%s' % (compver, versionsuffix))), | ||
] | ||
|
||
moduleclass = 'toolchain' |
22 changes: 22 additions & 0 deletions
22
easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-8.1.5-GCC-4.9.3-2.25.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name = 'imkl' | ||
version = '11.3.1.150' | ||
|
||
homepage = 'http://software.intel.com/en-us/intel-mkl/' | ||
description = """Intel Math Kernel Library is a library of highly optimized, | ||
extensively threaded math routines for science, engineering, and financial | ||
applications that require maximum performance. Core math functions include | ||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more.""" | ||
|
||
toolchain = {'name': 'iimpi', 'version': '8.1.5-GCC-4.9.3-2.25'} | ||
|
||
sources = ['l_mkl_%(version)s.tgz'] | ||
|
||
dontcreateinstalldir = 'True' | ||
|
||
# license file | ||
import os | ||
license_file = os.path.join(os.getenv('HOME'), "licenses", "intel", "license.lic") | ||
|
||
interfaces = True | ||
|
||
moduleclass = 'numlib' |
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,21 @@ | ||
easyblock = 'Toolchain' | ||
|
||
name = 'intel' | ||
version = '2016a' | ||
|
||
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 = '2016.1.150' | ||
gccsuff = '-GCC-4.9.3-2.25' | ||
|
||
dependencies = [ | ||
('icc', compver, gccsuff), | ||
('ifort', compver, gccsuff), | ||
('impi', '5.1.2.150', '', ('iccifort', '%s%s' % (compver, gccsuff))), | ||
('imkl', '11.3.1.150', '', ('iimpi', '8.1.5%s' % gccsuff)), | ||
] | ||
|
||
moduleclass = 'toolchain' |