From 8b656b8212cacc261853486b688567fe07245b5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Tue, 30 Jul 2019 08:46:56 +0200 Subject: [PATCH] new file: i/icc/icc-2019.4.227-GCC-8.3.0-2.32.eb new file: i/iccifort/iccifort-2019.4.227-GCC-8.3.0-2.32.eb new file: i/ifort/ifort-2019.4.227-GCC-8.3.0-2.32.eb new file: i/iimpi/iimpi-2019.03-GCC-8.3.0-2.32.eb new file: i/imkl/imkl-2019.3.199-iimpi-2019.03-GCC-8.3.0-2.32.eb new file: i/impi/impi-2019.3.199-iccifort-2019.4.227-GCC-8.3.0-2.32.eb new file: i/intel/intel-2019.03-GCC-8.3.0-2.32.eb --- i/icc/icc-2019.4.227-GCC-8.3.0-2.32.eb | 41 ++++++++++++++++++ .../iccifort-2019.4.227-GCC-8.3.0-2.32.eb | 31 +++++++++++++ i/ifort/ifort-2019.4.227-GCC-8.3.0-2.32.eb | 43 +++++++++++++++++++ i/iimpi/iimpi-2019.03-GCC-8.3.0-2.32.eb | 24 +++++++++++ ...2019.3.199-iimpi-2019.03-GCC-8.3.0-2.32.eb | 35 +++++++++++++++ ....199-iccifort-2019.4.227-GCC-8.3.0-2.32.eb | 33 ++++++++++++++ i/intel/intel-2019.03-GCC-8.3.0-2.32.eb | 29 +++++++++++++ 7 files changed, 236 insertions(+) create mode 100644 i/icc/icc-2019.4.227-GCC-8.3.0-2.32.eb create mode 100644 i/iccifort/iccifort-2019.4.227-GCC-8.3.0-2.32.eb create mode 100644 i/ifort/ifort-2019.4.227-GCC-8.3.0-2.32.eb create mode 100644 i/iimpi/iimpi-2019.03-GCC-8.3.0-2.32.eb create mode 100644 i/imkl/imkl-2019.3.199-iimpi-2019.03-GCC-8.3.0-2.32.eb create mode 100644 i/impi/impi-2019.3.199-iccifort-2019.4.227-GCC-8.3.0-2.32.eb create mode 100644 i/intel/intel-2019.03-GCC-8.3.0-2.32.eb diff --git a/i/icc/icc-2019.4.227-GCC-8.3.0-2.32.eb b/i/icc/icc-2019.4.227-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..5a89969a --- /dev/null +++ b/i/icc/icc-2019.4.227-GCC-8.3.0-2.32.eb @@ -0,0 +1,41 @@ +# IT4Innovations 2019 + +name = 'icc' +version = '2019.4.227' + +homepage = 'http://software.intel.com/en-us/intel-compilers/' +description = "Intel C and C++ compilers" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/14865/'] +sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_cpp.tgz'] + +gccver = '8.3.0' +binutilsver = '2.32' +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' + +modextravars = { + 'CC': 'icc', + 'CXX': 'icpc', + 'OPTFLAGS': '-O3 -xHost -ip', + 'DEBUGFLAGS': '-O0 -g' +} + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'compiler' diff --git a/i/iccifort/iccifort-2019.4.227-GCC-8.3.0-2.32.eb b/i/iccifort/iccifort-2019.4.227-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..31b05379 --- /dev/null +++ b/i/iccifort/iccifort-2019.4.227-GCC-8.3.0-2.32.eb @@ -0,0 +1,31 @@ +# IT4Innovations 2019 + +easyblock = 'Toolchain' + +name = 'iccifort' +version = '2019.4.227' +versionsuffix = '-GCC-8.3.0-2.32' + +homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/' +description = "Intel C, C++ & Fortran compilers" + +toolchain = {'name': 'dummy', 'version': ''} + +dependencies = [ + ('icc', version, versionsuffix), + ('ifort', version, versionsuffix), +] + +modextravars = { + 'CC': 'icc', + 'CXX': 'icpc', + 'F90': 'ifort', + 'F77': 'ifort', + 'FC': 'ifort', + 'OPTFLAGS': '-O3 -xHost -ip', + 'DEBUGFLAGS': '-O0 -g' +} + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'toolchain' diff --git a/i/ifort/ifort-2019.4.227-GCC-8.3.0-2.32.eb b/i/ifort/ifort-2019.4.227-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..ab74e08d --- /dev/null +++ b/i/ifort/ifort-2019.4.227-GCC-8.3.0-2.32.eb @@ -0,0 +1,43 @@ +# IT4Innovations 2019 + +name = 'ifort' +version = '2019.4.227' + +homepage = 'http://software.intel.com/en-us/intel-compilers/' +description = "Intel Fortran compiler" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/14866/'] +sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_fortran.tgz'] +#patches = ['ifort-%(version)s_no_mpi_mic_dependency.patch'] + +gccver = '8.3.0' +binutilsver = '2.32' +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' + +modextravars = { + 'F90': 'ifort', + 'F77': 'ifort', + 'FC': 'ifort', + 'OPTFLAGS': '-O3 -xHost -ip', + 'DEBUGFLAGS': '-O0 -g' +} + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'compiler' diff --git a/i/iimpi/iimpi-2019.03-GCC-8.3.0-2.32.eb b/i/iimpi/iimpi-2019.03-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..a664f71f --- /dev/null +++ b/i/iimpi/iimpi-2019.03-GCC-8.3.0-2.32.eb @@ -0,0 +1,24 @@ +# IT4Innovations 2019 + +easyblock = "Toolchain" + +name = 'iimpi' +version = '2019.03' +versionsuffix = '-GCC-8.3.0-2.32' + +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': ''} + +compver = '2019.4.227' +suff = '-GCC-8.3.0-2.32' +dependencies = [ + ('icc', compver, suff), + ('ifort', compver, suff), + ('impi', '2019.3.199', '', ('iccifort', '%s%s' % (compver, suff))), +] + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'toolchain' diff --git a/i/imkl/imkl-2019.3.199-iimpi-2019.03-GCC-8.3.0-2.32.eb b/i/imkl/imkl-2019.3.199-iimpi-2019.03-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..aa64b1ae --- /dev/null +++ b/i/imkl/imkl-2019.3.199-iimpi-2019.03-GCC-8.3.0-2.32.eb @@ -0,0 +1,35 @@ +# IT4Innovations 2019 + +name = 'imkl' +version = '2019.3.199' + +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': '2019.03-GCC-8.3.0-2.32'} + +sources = ['l_mkl_%(version)s.tgz'] + +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/', +] + +modextravars = { + 'MKL_EXAMPLES': '%(installdir)s/mkl/examples/', +} + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'numlib' diff --git a/i/impi/impi-2019.3.199-iccifort-2019.4.227-GCC-8.3.0-2.32.eb b/i/impi/impi-2019.3.199-iccifort-2019.4.227-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..7e2df0fe --- /dev/null +++ b/i/impi/impi-2019.3.199-iccifort-2019.4.227-GCC-8.3.0-2.32.eb @@ -0,0 +1,33 @@ +# IT4Innovations 2019 + +name = 'impi' +version = '2019.3.199' + +homepage = 'http://software.intel.com/en-us/intel-mpi-library/' +description = "Intel MPI Library, compatible with MPICH ABI" + +toolchain = {'name': 'iccifort', 'version': '2019.4.227-GCC-8.3.0-2.32'} + +source_urls = ['http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/14879/'] +sources = ['l_mpi_%(version)s.tgz'] + +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' + +modextravars = { + 'I_MPI_CC': 'icc', + 'I_MPI_CXX': 'icpc', + 'I_MPI_F77': 'ifort', + 'I_MPI_F90': 'ifort', + 'I_MPI_FC': 'ifort', + 'I_MPI_EXTRA_FILESYSTEM': 'enable', + 'I_MPI_EXTRA_FILESYSTEM_LIST': 'lustre', +} + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'mpi' diff --git a/i/intel/intel-2019.03-GCC-8.3.0-2.32.eb b/i/intel/intel-2019.03-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..62397a1d --- /dev/null +++ b/i/intel/intel-2019.03-GCC-8.3.0-2.32.eb @@ -0,0 +1,29 @@ +# IT4Innovations 2019 + +easyblock = 'Toolchain' + +name = 'intel' +version = '2019.03' +versionsuffix = '-GCC-8.3.0-2.32' + +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': ''} + +compver = '2019.4.227' +gccver = '8.3.0' +binutilsver = '2.32' +gccsuff = '-GCC-%s-%s' % (gccver, binutilsver) +dependencies = [ + ('GCCcore', gccver), + ('binutils', binutilsver, '-GCCcore-%s' % gccver), + ('icc', compver, gccsuff), + ('ifort', compver, gccsuff), + ('impi', '2019.3.199', '', ('iccifort', '%s%s' % (compver, gccsuff))), + ('imkl', '2019.3.199', '', ('iimpi', '%s%s' % (version, gccsuff))), +] + +modluafooter = 'add_property("state","experimental")' + +moduleclass = 'toolchain'