mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
Merge branch 'easyconfigs-it4i-salomon'
This commit is contained in:
commit
e44c656188
21
b/binutils/binutils-2.28-GCCcore-7.1.0.eb
Normal file
21
b/binutils/binutils-2.28-GCCcore-7.1.0.eb
Normal file
@ -0,0 +1,21 @@
|
||||
name = 'binutils'
|
||||
version = '2.28'
|
||||
|
||||
homepage = 'http://directory.fsf.org/project/binutils/'
|
||||
description = "binutils: GNU binary utilities"
|
||||
|
||||
toolchain = {'name': 'GCCcore', 'version': '7.1.0'}
|
||||
|
||||
sources = [SOURCE_TAR_GZ]
|
||||
source_urls = [GNU_SOURCE]
|
||||
|
||||
builddependencies = [
|
||||
('flex', '2.6.3', '', True),
|
||||
('Bison', '3.0.4', '', True),
|
||||
# zlib required, but being linked in statically, so not a runtime dep
|
||||
('zlib', '1.2.11', '', True),
|
||||
# use same binutils version that was used when building GCC toolchain, to 'bootstrap' this binutils
|
||||
('binutils', version, '', True)
|
||||
]
|
||||
|
||||
moduleclass = 'tools'
|
19
b/binutils/binutils-2.28.eb
Normal file
19
b/binutils/binutils-2.28.eb
Normal file
@ -0,0 +1,19 @@
|
||||
name = 'binutils'
|
||||
version = '2.28'
|
||||
|
||||
homepage = 'http://directory.fsf.org/project/binutils/'
|
||||
description = "binutils: GNU binary utilities"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = [SOURCE_TAR_GZ]
|
||||
source_urls = [GNU_SOURCE]
|
||||
|
||||
builddependencies = [
|
||||
('flex', '2.6.3', '', True),
|
||||
('Bison', '3.0.4', '', True),
|
||||
# zlib required, but being linked in statically, so not a runtime dep
|
||||
('zlib', '1.2.11', '', True),
|
||||
]
|
||||
|
||||
moduleclass = 'tools'
|
16
c/CUDA/CUDA-7.5.18.eb
Normal file
16
c/CUDA/CUDA-7.5.18.eb
Normal file
@ -0,0 +1,16 @@
|
||||
name = 'CUDA'
|
||||
version = '7.5.18'
|
||||
|
||||
homepage = 'https://developer.nvidia.com/cuda-toolkit'
|
||||
description = """CUDA (formerly Compute Unified Device Architecture) is a parallel
|
||||
computing platform and programming model created by NVIDIA and implemented by the
|
||||
graphics processing units (GPUs) that they produce. CUDA gives developers access
|
||||
to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
||||
|
||||
source_urls = ['http://developer.download.nvidia.com/compute/cuda/%(version_major_minor)s/Prod/local_installers/']
|
||||
|
||||
sources = ['%(namelower)s_%(version)s_linux.run']
|
||||
|
||||
moduleclass = 'system'
|
@ -7,7 +7,7 @@ description = """CUDA (formerly Compute Unified Device Architecture) is a parall
|
||||
graphics processing units (GPUs) that they produce. CUDA gives developers access
|
||||
to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
source_urls = ['https://developer.nvidia.com/compute/cuda/%(version_major_minor)s/prod/local_installers/']
|
||||
|
||||
|
35
c/cuDNN/cuDNN-5.1-CUDA-7.5.18.eb
Normal file
35
c/cuDNN/cuDNN-5.1-CUDA-7.5.18.eb
Normal file
@ -0,0 +1,35 @@
|
||||
##
|
||||
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
|
||||
#
|
||||
# Author: Stephane Thiell <sthiell@stanford.edu>
|
||||
##
|
||||
easyblock = 'Tarball'
|
||||
|
||||
name = 'cuDNN'
|
||||
version = '5.1'
|
||||
cuda_version = '7.5.18'
|
||||
|
||||
versionsuffix = '-CUDA-%s' % cuda_version
|
||||
|
||||
homepage = 'https://developer.nvidia.com/cudnn'
|
||||
description = """The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for
|
||||
deep neural networks."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
||||
|
||||
# Nvidia developer registration required.
|
||||
# Download link: https://developer.nvidia.com/rdp/cudnn-download
|
||||
sources = ['%(namelower)s-8.0-linux-x64-v%(version)s.tgz']
|
||||
|
||||
dependencies = [('CUDA', cuda_version)]
|
||||
|
||||
#checksums = [
|
||||
# '099ca6a9b21b35e32f3408eff2a1c06d', # cudnn-8.0-linux-x64-v5.1.tgz
|
||||
#]
|
||||
|
||||
sanity_check_paths = {
|
||||
'files': ['include/cudnn.h', 'lib64/libcudnn_static.a'],
|
||||
'dirs': ['include', 'lib64'],
|
||||
}
|
||||
|
||||
moduleclass = 'numlib'
|
54
g/GCCcore/GCCcore-7.1.0.eb
Normal file
54
g/GCCcore/GCCcore-7.1.0.eb
Normal file
@ -0,0 +1,54 @@
|
||||
easyblock = 'EB_GCC'
|
||||
|
||||
name = 'GCCcore'
|
||||
version = '7.1.0'
|
||||
|
||||
homepage = 'http://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 = {'name': 'dummy', 'version': ''}
|
||||
|
||||
mpfr_version = '3.1.5'
|
||||
|
||||
source_urls = [
|
||||
'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror
|
||||
'http://ftpmirror.gnu.org/gmp', # idem for GMP
|
||||
'http://ftpmirror.gnu.org/mpfr', # idem for MPFR
|
||||
'http://www.multiprecision.org/mpc/download', # MPC official
|
||||
'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies
|
||||
'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
|
||||
'http://isl.gforge.inria.fr/', # original HTTP source for ISL
|
||||
]
|
||||
|
||||
sources = [
|
||||
'gcc-%(version)s.tar.bz2',
|
||||
'gmp-6.1.2.tar.bz2',
|
||||
'mpfr-%s.tar.bz2' % mpfr_version,
|
||||
'mpc-1.0.3.tar.gz',
|
||||
'isl-0.16.1.tar.bz2',
|
||||
]
|
||||
|
||||
builddependencies = [
|
||||
('M4', '1.4.18', '', True),
|
||||
('binutils', '2.28', '', True),
|
||||
]
|
||||
|
||||
patches = [
|
||||
('mpfr-%s-allpatches-20161219.patch' % mpfr_version, '../mpfr-%s' % mpfr_version),
|
||||
'GCCcore-6.2.0-fix-find-isl.patch',
|
||||
]
|
||||
|
||||
checksums = [
|
||||
'6bf56a2bca9dac9dbbf8e8d1036964a8', # gcc-7.1.0.tar.bz2
|
||||
'8ddbb26dc3bd4e2302984debba1406a5', # gmp-6.1.2.tar.bz2
|
||||
'b1d23a55588e3b2a13e3be66bc69fd8d', # mpfr-3.1.5.tar.gz
|
||||
'd6a1d5f8ddea3abd2cc3e98f58352d26', # mpc-1.0.3.tar.gz
|
||||
'ac1f25a0677912952718a51f5bc20f32', # isl-0.16.1.tar.bz2
|
||||
]
|
||||
|
||||
languages = ['c', 'c++', 'fortran']
|
||||
|
||||
withisl = True
|
||||
|
||||
moduleclass = 'compiler'
|
@ -4,7 +4,7 @@ version = '2013.5.192'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_ccompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.0.090'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_ccompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.1.133'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_ccompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.2.164'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_ccompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.3.187'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_ccompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.5.223'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_ccompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -6,7 +6,7 @@ version = '2016.0.109'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['parallel_studio_xe_%(version_major)s_composer_edition_for_cpp.tgz']
|
||||
|
||||
|
@ -6,7 +6,7 @@ version = '2016.1.150'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['parallel_studio_xe_%(version_major)s_composer_edition_for_cpp_update%(version_minor)s.tgz']
|
||||
|
||||
|
33
i/icc/icc-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
33
i/icc/icc-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
@ -0,0 +1,33 @@
|
||||
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
||||
|
||||
name = 'icc'
|
||||
version = '2017.4.196'
|
||||
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "C and C++ compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
||||
|
||||
sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_cpp.tgz']
|
||||
|
||||
checksums = ['6502a5763c2e2ec5755f7e4a3b5ce678']
|
||||
|
||||
gccver = '7.1.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 = '/apps/licenses/intel/license.lic'
|
||||
|
||||
moduleclass = 'compiler'
|
19
i/iccifort/iccifort-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
19
i/iccifort/iccifort-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
@ -0,0 +1,19 @@
|
||||
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
||||
easyblock = 'Toolchain'
|
||||
|
||||
name = 'iccifort'
|
||||
version = '2017.4.196'
|
||||
versionsuffix = '-GCC-7.1.0-2.28'
|
||||
|
||||
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 and
|
||||
Intel MKL"""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
||||
|
||||
dependencies = [
|
||||
('icc', version, versionsuffix),
|
||||
('ifort', version, versionsuffix),
|
||||
]
|
||||
|
||||
moduleclass = 'toolchain'
|
@ -4,7 +4,7 @@ version = '2013.5.192'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_fcompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.0.090'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_fcompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.1.133'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_fcompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.2.164'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_fcompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.3.187'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_fcompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = '2015.5.223'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_fcompxe_%(version)s.tgz']
|
||||
|
||||
|
@ -6,7 +6,7 @@ version = '2016.0.109'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['parallel_studio_xe_%(version_major)s_composer_edition_for_fortran.tgz']
|
||||
|
||||
|
@ -6,7 +6,7 @@ version = '2016.1.150'
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['parallel_studio_xe_%(version_major)s_composer_edition_for_fortran_update%(version_minor)s.tgz']
|
||||
|
||||
|
36
i/ifort/ifort-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
36
i/ifort/ifort-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
@ -0,0 +1,36 @@
|
||||
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
||||
|
||||
name = 'ifort'
|
||||
version = '2017.4.196'
|
||||
|
||||
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
||||
description = "Fortran compiler from Intel"
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
||||
|
||||
sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_fortran.tgz']
|
||||
|
||||
checksums = ['c7670e3fd211ac2c48d5d50e72b26cda']
|
||||
|
||||
# remove dependency on intel-mpi-rt-mic
|
||||
patches = ['ifort_2017_no_mpi_mic_dependency.patch']
|
||||
|
||||
gccver = '7.1.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 = '/apps/licenses/intel/license.lic'
|
||||
|
||||
moduleclass = 'compiler'
|
20
i/iimpi/iimpi-2017.05-GCC-7.1.0-2.28.eb
Normal file
20
i/iimpi/iimpi-2017.05-GCC-7.1.0-2.28.eb
Normal file
@ -0,0 +1,20 @@
|
||||
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
||||
easyblock = "Toolchain"
|
||||
|
||||
name = 'iimpi'
|
||||
version = '2017.05'
|
||||
versionsuffix = '-GCC-7.1.0-2.28'
|
||||
|
||||
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'
|
||||
dependencies = [
|
||||
('icc', compver, versionsuffix),
|
||||
('ifort', compver, versionsuffix),
|
||||
('impi', '2017.3.196', '', ('iccifort', '%s%s' % (compver, versionsuffix))),
|
||||
]
|
||||
|
||||
moduleclass = 'toolchain'
|
@ -8,7 +8,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_p_%(version)s.tar.gz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_p_%(version)s.tar.gz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s_intel64.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s_intel64.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -6,7 +6,7 @@ description = """Intel Math Kernel Library is a library of highly optimized, ext
|
||||
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': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
@ -7,7 +7,7 @@ description = """Intel Math Kernel Library is a library of highly optimized,
|
||||
applications that require maximum performance. Core math functions include
|
||||
BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more."""
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': '}
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
|
||||
|
36
i/imkl/imkl-2017.3.196-iimpi-2017.05-GCC-7.1.0-2.28.eb
Normal file
36
i/imkl/imkl-2017.3.196-iimpi-2017.05-GCC-7.1.0-2.28.eb
Normal file
@ -0,0 +1,36 @@
|
||||
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
||||
|
||||
name = 'imkl'
|
||||
version = '2017.3.196'
|
||||
|
||||
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': '2017.05-GCC-7.1.0-2.28'}
|
||||
|
||||
sources = ['l_mkl_%(version)s.tgz']
|
||||
checksums = ['4a2eb4bee789391d9c07d7c348a80702']
|
||||
|
||||
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'
|
33
i/impi/impi-2017.3.196-iccifort-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
33
i/impi/impi-2017.3.196-iccifort-2017.4.196-GCC-7.1.0-2.28.eb
Normal file
@ -0,0 +1,33 @@
|
||||
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
||||
|
||||
name = 'impi'
|
||||
version = '2017.3.196'
|
||||
|
||||
homepage = 'http://software.intel.com/en-us/intel-mpi-library/'
|
||||
description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message
|
||||
passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for
|
||||
Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification."""
|
||||
|
||||
toolchain = {'name': 'iccifort', 'version': '2017.4.196-GCC-7.1.0-2.28'}
|
||||
|
||||
sources = ['l_mpi_%(version)s.tgz']
|
||||
|
||||
checksums = ['721ecd5f6afa385e038777e5b5361dfb']
|
||||
|
||||
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'
|
@ -4,6 +4,9 @@ name = 'impi'
|
||||
version = '5.1.2.150'
|
||||
|
||||
homepage = 'http://software.intel.com/en-us/intel-mpi-library/'
|
||||
description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message
|
||||
passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for
|
||||
Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification."""
|
||||
|
||||
toolchain = {'name': 'iccifort', 'version': '2016.1.150-GCC-4.9.3-2.25'}
|
||||
|
||||
|
25
i/intel/intel-2017.05.eb
Normal file
25
i/intel/intel-2017.05.eb
Normal file
@ -0,0 +1,25 @@
|
||||
easyblock = 'Toolchain'
|
||||
|
||||
name = 'intel'
|
||||
version = '2017.05'
|
||||
|
||||
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.4.196'
|
||||
gccver = '7.1.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 + gccsuff)),
|
||||
]
|
||||
|
||||
moduleclass = 'toolchain'
|
Loading…
x
Reference in New Issue
Block a user