easyconfigs-it4i/g/GDRCopy/GDRCopy-2.3-NVHPC-21.9-CUDA-11.4.1.eb
Jakub Kropacek 73ee681a9a modified: a/ABINIT/ABINIT-9.4.2-intel-2020b.eb
new file:   a/ANSYS/ANSYS-21.2-intel-2020b.eb
	new file:   g/GDRCopy/GDRCopy-2.1-NVHPC-21.9-CUDA-11.4.1.eb
	new file:   g/GDRCopy/GDRCopy-2.3-GCCcore-10.2.0.eb
	new file:   g/GDRCopy/GDRCopy-2.3-NVHPC-21.9-CUDA-11.4.1.eb
	new file:   h/HDF5/HDF5-1.10.7-iimpi-2021a.eb
	new file:   n/NVHPC/NVHPC-21.9.eb
	new file:   o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.9-CUDA-11.4.1.eb
	modified:   q/QMCPACK/QMCPACK-3.11.0-intel-2020b-Python-3.8.6.eb
	new file:   u/UCX/UCX-1.11.2-NVHPC-21.9-CUDA-11.4.1.eb
	deleted:    q/QMCPACK/QMCPACK-3.11.0-intel-2020a-Python-3.8.2-test.eb
	deleted:    q/QMCPACK/QMCPACK-3.11.0-intel-2020a-Python-3.8.2.eb
	deleted:    q/QMCPACK/QMCPACK-3.11.0-intel-2020b-Python-3.8.6-test.eb
2021-10-13 19:53:53 +02:00

61 lines
1.8 KiB
Plaintext

# IT4Innovations
# LK 2021
easyblock = 'ConfigureMake'
name = 'GDRCopy'
version = '2.3'
versionsuffix = '-CUDA-11.4.1'
homepage = 'https://github.com/NVIDIA/gdrcopy'
description = "A low-latency GPU memory copy library based on NVIDIA GPUDirect RDMA technology."
toolchain = {'name': 'NVHPC', 'version': '21.9'}
toolchainopts = {'pic': True}
github_account = 'NVIDIA'
source_urls = [GITHUB_SOURCE]
sources = ['v%(version)s.tar.gz']
checksums = ['b85d15901889aa42de6c4a9233792af40dd94543e82abe0439e544c87fd79475']
builddependencies = [
('binutils', '2.35'),
('Autotools', '20200321'),
('pkg-config', '0.29.2'),
]
dependencies = [
('CUDAcore', '11.4.1', '', True),
]
# This easyconfig only installs the library of GDRCopy. Please keep in mind
# that GDRCopy also needs the following kernel modules at runtime:
#
# 1. Kernel module for GDRCopy: improves Host to GPU communication
# https://github.com/NVIDIA/gdrcopy
# RPM: 'gdrcopy-kmod', DEB: 'gdrdrv-dkms'
# Requirements: version of GDRCopy kernel module (gdrdrv.ko) >= 2.0
#
# 2. (optional) Kernel module for GPUDirect RDMA: improves GPU to GPU communication
# https://github.com/Mellanox/nv_peer_memory
# RPM: 'nvidia_peer_memory'
# Requirements: Mellanox HCA with MLNX_OFED 2.1
#
# These kernel modules are not listed as system dependencies to lower the system
# requirements to build this easyconfig, as they are not needed for the build.
skipsteps = ['configure']
local_envopts = "prefix=%(installdir)s"
prebuildopts = "PATH=$PATH:/sbin " # ensures that ldconfig is found
buildopts = "config lib %s" % local_envopts
install_cmd = "make lib_install"
installopts = local_envopts
sanity_check_paths = {
'files': ['lib/libgdrapi.%s' % SHLIB_EXT],
'dirs': ['include'],
}
moduleclass = 'lib'