easyconfigs-it4i/u/UCC-CUDA/UCC-CUDA-1.2.0-GCCcore-13.2.0-CUDA-12.2.0.eb
Lukas Krupcik 2222b4cb88 new file: a/ANSYS/ANSYS-2023R2-intel-2022.12-palanti.eb
new file:   c/CP2K/CP2K-2024.1-foss-2022a.eb
	new file:   h/HDF5/HDF5-1.14.0-nvompi-2022.07.eb
	new file:   h/HDF5/HDF5-1.14.0-nvompi-2023.03.eb
	new file:   h/HDF5/HDF5-1.14.0-nvompi-2023.05.eb
	new file:   h/HDF5/HDF5-1.14.0-nvompi-2023.11.eb
	new file:   n/NCCL/NCCL-2.19.4-GCCcore-13.2.0-CUDA-12.2.0.eb
	new file:   n/NVHPC/NVHPC-23.11.eb
	modified:   n/NVHPC/NVHPC-23.7.eb
	new file:   n/nvompi/nvompi-2023.03.eb
	new file:   n/nvompi/nvompi-2023.05.eb
	new file:   n/nvompi/nvompi-2023.11.eb
	modified:   o/OpenMPI/OpenMPI-4.1.4-NVHPC-22.7-CUDA-11.7.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.5-NVHPC-23.11-CUDA-12.2.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.6-NVHPC-23.11-CUDA-12.2.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.6-NVHPC-23.3-CUDA-12.2.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.6-NVHPC-23.5-CUDA-12.2.0.eb
	new file:   p/pkgconf/pkgconf-2.0.3-NVHPC-23.11.eb
	new file:   u/UCC-CUDA/UCC-CUDA-1.2.0-GCCcore-13.2.0-CUDA-12.2.0.eb
	new file:   u/UCX-CUDA/UCX-CUDA-1.15.0-GCCcore-13.2.0-CUDA-12.2.0.eb
	deleted:    h/HDF5/HDF5-1.14.0-NVHPC-23.5.eb
2024-01-18 10:45:17 +01:00

61 lines
1.8 KiB
Plaintext

# IT4Innovations
# LK 2024
easyblock = 'ConfigureMake'
name = 'UCC-CUDA'
version = '1.2.0'
versionsuffix = '-CUDA-%(cudaver)s'
homepage = 'https://www.openucx.org/'
description = """UCC (Unified Collective Communication) is a collective
communication operations API and library that is flexible, complete, and
feature-rich for current and emerging programming models and runtimes.
This module adds the UCC CUDA support.
"""
toolchain = {'name': 'GCCcore', 'version': '13.2.0'}
toolchainopts = {'pic': True}
source_urls = ['https://github.com/openucx/ucc/archive/refs/tags']
sources = ['v%(version)s.tar.gz']
patches = [
'%(name)s-1.0.0_link_against_existing_UCC_libs.patch',
'%(name)s-%(version)s_cuda_12_mem_ops.patch',
]
checksums = [
{'v1.1.0.tar.gz': '74c8ba75037b5bd88cb703e8c8ae55639af3fecfd4428912a433c010c97b4df7'},
{'UCC-CUDA-1.0.0_link_against_existing_UCC_libs.patch':
'9fa11cf6779174f4e9048df5812096e4261e1769d465cc7f34a6354398876856'},
{'UCC-CUDA-1.1.0_cuda_12_mem_ops.patch': 'fc3ea1487d29dc626db2363ef5a79e7f0906f6a7507a363fa6167a812b143eb6'},
]
builddependencies = [
('binutils', '2.40'),
('Autotools', '20220317'),
]
dependencies = [
('UCC', '1.2.0'),
('CUDA', '12.2.0', '', SYSTEM),
('UCX-CUDA', '1.15.0', '-CUDA-%(cudaver)s'),
('NCCL', '2.18.3', '-CUDA-%(cudaver)s', SYSTEM),
]
preconfigopts = "./autogen.sh && "
buildopts = '-C src/components/mc/cuda V=1 && make -C src/components/tl/nccl V=1'
installopts = '-C src/components/mc/cuda && make -C src/components/tl/nccl install'
sanity_check_paths = {
'files': ['lib/ucc/libucc_mc_cuda.%s' % SHLIB_EXT, 'lib/ucc/libucc_tl_nccl.%s' % SHLIB_EXT],
'dirs': ['lib']
}
sanity_check_commands = ["ucc_info -c"]
modextrapaths = {'EB_UCC_EXTRA_COMPONENT_PATH': 'lib/ucc'}
moduleclass = 'lib'