mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: c/CP2K/CP2K-8.2-foss-2020b.eb new file: c/CP2K/CP2K-8.2-intel-2020b.eb modified: d/DFTB+/DFTB+-21.1-intel-2020b-Python-3.8.6-karolina.eb new file: g/GROMACS/GROMACS-2021.4-fosscuda-2020b-PLUMED-2.7.3.eb modified: g/GROMACS/GROMACS-2021.4-intel-2020b-PLUMED-2.7.2.eb new file: g/GROMACS/GROMACS-2021.4-intel-2020b-PLUMED-2.7.3.eb new file: i/intel-compilers/intel-compilers-2021.4.0.eb new file: l/Libint/Libint-2.6.0-GCC-10.2.0-lmax-6-cp2k.eb new file: l/libxc/libxc-5.1.3-GCC-10.2.0.eb modified: n/NVHPC/NVHPC-21.11.eb new file: o/Octopus/Octopus-11.3-intel-2020b-mpi.eb new file: o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.11-CUDA-11.4.1-v2.eb new file: o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.11-CUDA-11.4.1.eb new file: p/PETSc/PETSc-3.16.2-intel-2020b.eb new file: p/PLUMED/PLUMED-2.7.3-fosscuda-2020b.eb new file: p/phonopy/phonopy-2.12.0-conda.eb new file: u/UCX/UCX-1.11.2-GCCcore-11.2.0.eb new file: u/UCX/UCX-1.11.2-NVHPC-21.11-CUDA-11.4.1.eb new file: v/VASP/VASP-5.4.4-intel-2020a-mkl=sequential-karolina.eb
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
# IT4Innovations
|
|
# LK 2022
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'UCX'
|
|
version = '1.11.2'
|
|
|
|
homepage = 'https://www.openucx.org/'
|
|
description = """Unified Communication X
|
|
An open-source production grade communication framework for data centric
|
|
and high-performance applications
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '11.2.0'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['https://github.com/openucx/ucx/releases/download/v%(version)s']
|
|
sources = ['%(namelower)s-%(version)s.tar.gz']
|
|
patches = [
|
|
'UCX-1.10.0-dynamic_modules.patch',
|
|
'UCX-1.11.2-missing_header.patch',
|
|
]
|
|
checksums = [
|
|
'deebf86a5344fc2bd9e55449f88c650c4514928592807c9bc6fe4190e516c6df', # ucx-1.11.2.tar.gz
|
|
'3098c91f2aadc5f148466a2e8756769ad5e99f9515d8cfb6ad8a5712e7433408', # UCX-1.10.0-dynamic_modules.patch
|
|
'fa9052a33da5c8e94bc7df0e5fe6ce3baf613310842ae1ab9ed4ef2d49666c01', # UCX-1.11.2-missing_header.patch
|
|
]
|
|
|
|
builddependencies = [
|
|
('binutils', '2.37'),
|
|
('Autotools', '20210726'),
|
|
('pkg-config', '0.29.2'),
|
|
]
|
|
|
|
osdependencies = [OS_PKG_IBVERBS_DEV]
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11'),
|
|
('numactl', '2.0.14'),
|
|
]
|
|
|
|
configure_cmd = "contrib/configure-release"
|
|
|
|
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs '
|
|
configopts += '--without-java --disable-doxygen-doc '
|
|
|
|
buildopts = 'V=1'
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/ucx_info', 'bin/ucx_perftest', 'bin/ucx_read_profile'],
|
|
'dirs': ['include', 'lib', 'share']
|
|
}
|
|
|
|
sanity_check_commands = ["ucx_info -d"]
|
|
|
|
moduleclass = 'lib'
|