mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
new file: b/Boost/Boost-1.68.0-intel-2018a-serial.eb
modified: g/GROMACS/GROMACS-2018.1-intel-2017c-hybrid-single-PLUMED.eb modified: g/GSL/GSL-2.5-intel-2017c.eb new file: h/HDF5/HDF5-1.10.4-intel-2018a-serial.eb new file: q/QMCPACK/QMCPACK-3.6.0-intel-2018a.eb modified: v/VTune/VTune-2017_update5.eb modified: v/VTune/VTune-2018_update3.eb new file: v/VTune/VTune-2019_update2.eb
This commit is contained in:
parent
0de24a3fdf
commit
b9324ebf78
28
b/Boost/Boost-1.68.0-intel-2018a-serial.eb
Normal file
28
b/Boost/Boost-1.68.0-intel-2018a-serial.eb
Normal file
@ -0,0 +1,28 @@
|
||||
# IT4Innovations 2018
|
||||
|
||||
name = 'Boost'
|
||||
version = '1.68.0'
|
||||
versionsuffix = '-serial'
|
||||
|
||||
homepage = 'http://www.boost.org/'
|
||||
description = """Boost provides free peer-reviewed portable C++ source libraries."""
|
||||
|
||||
toolchain = {'name': 'intel', 'version': '2018a'}
|
||||
toolchainopts = {'pic': True, 'usempi': True}
|
||||
|
||||
source_urls = [SOURCEFORGE_SOURCE]
|
||||
sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
|
||||
|
||||
|
||||
dependencies = [
|
||||
('bzip2', '1.0.6', '', True),
|
||||
('zlib', '1.2.11', '', True),
|
||||
]
|
||||
|
||||
configopts = '--with-libraries=serialization'
|
||||
configopts = '--without-libraries=python'
|
||||
|
||||
# also build boost_mpi
|
||||
boost_mpi = True
|
||||
|
||||
moduleclass = 'devel'
|
@ -20,7 +20,7 @@ sources = [SOURCELOWER_TAR_GZ]
|
||||
configopts = ' -DGMX_GPU=OFF -DBUILD_SHARED_LIBS=OFF -DGMX_PREFER_STATIC_LIBS=ON -DGMX_DOUBLE=OFF -DGMX_SIMD=AVX2_256 -DGMX_BUILD_OWN_FFTW=ON -DGMX_MPI=ON'
|
||||
|
||||
builddependencies = [
|
||||
('CMake', '3.9.1', '', True),
|
||||
('CMake', '3.13.1', '', True),
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
|
@ -1,3 +1,5 @@
|
||||
# IT4Innovations 2019
|
||||
|
||||
easyblock = 'ConfigureMake'
|
||||
|
||||
name = 'GSL'
|
||||
|
23
h/HDF5/HDF5-1.10.4-intel-2018a-serial.eb
Normal file
23
h/HDF5/HDF5-1.10.4-intel-2018a-serial.eb
Normal file
@ -0,0 +1,23 @@
|
||||
# IT4Innovations 2019
|
||||
|
||||
name = 'HDF5'
|
||||
version = '1.10.4'
|
||||
versionsuffix = '-serial'
|
||||
|
||||
homepage = 'http://www.hdfgroup.org/HDF5/'
|
||||
description = """HDF5 is a unique technology suite that makes possible the management of
|
||||
extremely large and complex data collections."""
|
||||
|
||||
toolchain = {'name': 'intel', 'version': '2018a'}
|
||||
toolchainopts = {'pic': True}
|
||||
|
||||
source_urls = [
|
||||
'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src']
|
||||
sources = [SOURCELOWER_TAR_GZ]
|
||||
|
||||
dependencies = [
|
||||
('zlib', '1.2.11', '', True),
|
||||
('Szip', '2.1', '', True),
|
||||
]
|
||||
|
||||
moduleclass = 'data'
|
34
q/QMCPACK/QMCPACK-3.6.0-intel-2018a.eb
Normal file
34
q/QMCPACK/QMCPACK-3.6.0-intel-2018a.eb
Normal file
@ -0,0 +1,34 @@
|
||||
# IT4Innovations 2019
|
||||
|
||||
easyblock = 'CMakeMake'
|
||||
|
||||
name = 'QMCPACK'
|
||||
version = '3.6.0'
|
||||
|
||||
homepage = "https://qmcpack.org/"
|
||||
description = """QMCPACK, is a modern high-performance open-source Quantum Monte Carlo (QMC) simulation code. Its main applications are electronic structure calculations of molecular, quasi-2D and solid-state systems. Variational Monte Carlo (VMC), diffusion Monte Carlo (DMC) and a number of other advanced QMC algorithms are implemented. Orbital space auxiliary field QMC (AFQMC) has recently been added. By directly solving the Schrodinger equation, QMC methods offer greater accuracy than methods such as density functional theory, but at a trade-off of much greater computational expense.
|
||||
"""
|
||||
|
||||
toolchain = {'name': 'intel', 'version': '2018a'}
|
||||
toolchainopts = {'opt': True, 'pic': True, 'usempi': True}
|
||||
|
||||
source_urls = ['https://github.com/QMCPACK/qmcpack/archive/']
|
||||
sources = ['v%(version)s.tar.gz']
|
||||
|
||||
dependencies = [
|
||||
('CMake', '3.13.1', '', True),
|
||||
('libxml2', '2.9.4', '', True),
|
||||
('Boost', '1.68.0', '-serial'),
|
||||
('HDF5', '1.10.4', '-serial')
|
||||
]
|
||||
|
||||
separate_build_dir = True
|
||||
|
||||
configopts = ' -DENABLE_SOA=1 '
|
||||
|
||||
sanity_check_paths = {
|
||||
'files': ['bin/qmcpack'],
|
||||
'dirs': ['bin'],
|
||||
}
|
||||
|
||||
moduleclass = 'phys'
|
@ -1,3 +1,5 @@
|
||||
# IT4Innovations 2019
|
||||
|
||||
name = 'VTune'
|
||||
version = '2017_update5'
|
||||
|
||||
@ -19,13 +21,13 @@ sanity_check_paths = {
|
||||
}
|
||||
|
||||
# Do necessary post-install steps to build VTune kernel modules
|
||||
postinstallcmds = [
|
||||
'mkdir %(installdir)s/modules',
|
||||
'cd %(installdir)s/vtune_amplifier_xe/sepdk/src/ && '
|
||||
'./build-driver --install-dir=%(installdir)s/modules --non-interactive',
|
||||
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i',
|
||||
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i',
|
||||
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i',
|
||||
]
|
||||
#postinstallcmds = [
|
||||
# 'mkdir %(installdir)s/modules',
|
||||
# 'cd %(installdir)s/vtune_amplifier_xe/sepdk/src/ && '
|
||||
# './build-driver --install-dir=%(installdir)s/modules --non-interactive',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i',
|
||||
#]
|
||||
|
||||
moduleclass = 'tools'
|
||||
|
@ -22,13 +22,13 @@ sanity_check_paths = {
|
||||
}
|
||||
|
||||
# Do necessary post-install steps to build VTune kernel modules
|
||||
postinstallcmds = [
|
||||
'mkdir %(installdir)s/modules',
|
||||
'cd %(installdir)s/vtune_amplifier/sepdk/src/ && '
|
||||
'./build-driver --install-dir=%(installdir)s/modules --non-interactive',
|
||||
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i',
|
||||
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i',
|
||||
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i',
|
||||
]
|
||||
#postinstallcmds = [
|
||||
# 'mkdir %(installdir)s/modules',
|
||||
# 'cd %(installdir)s/vtune_amplifier/sepdk/src/ && '
|
||||
# './build-driver --install-dir=%(installdir)s/modules --non-interactive',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i',
|
||||
#]
|
||||
|
||||
moduleclass = 'tools'
|
||||
|
33
v/VTune/VTune-2019_update2.eb
Normal file
33
v/VTune/VTune-2019_update2.eb
Normal file
@ -0,0 +1,33 @@
|
||||
# IT4Innovations 2019
|
||||
|
||||
name = 'VTune'
|
||||
version = '2019_update2'
|
||||
|
||||
homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe'
|
||||
description = "Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java."
|
||||
|
||||
toolchain = {'name': 'dummy', 'version': ''}
|
||||
|
||||
sources = ['vtune_amplifier_%(version)s.tar.gz']
|
||||
|
||||
dontcreateinstalldir = 'True'
|
||||
|
||||
# license file
|
||||
license_file = '/apps/licenses/intel/license.lic'
|
||||
|
||||
sanity_check_paths = {
|
||||
'files': [],
|
||||
'dirs': ['vtune_amplifier_2019.2.0.584348'],
|
||||
}
|
||||
|
||||
# Do necessary post-install steps to build VTune kernel modules
|
||||
#postinstallcmds = [
|
||||
# 'mkdir %(installdir)s/modules',
|
||||
# 'cd %(installdir)s/vtune_amplifier/sepdk/src/ && '
|
||||
# './build-driver --install-dir=%(installdir)s/modules --non-interactive',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i',
|
||||
# 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i',
|
||||
#]
|
||||
|
||||
moduleclass = 'tools'
|
Loading…
x
Reference in New Issue
Block a user