mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: b/Bison/Bison-3.7.6-GCCcore-10.2.0.eb new file: b/bwidget/bwidget-1.9.14-GCCcore-10.2.0.eb new file: d/DFTB+/DFTB+-21.1-intel-2020a-Python-3.8.2.eb new file: g/GDRCopy/GDRCopy-2.1-NVHPC-21.2-CUDA-11.2.0.eb new file: g/GDRCopy/GDRCopy-2.1-NVHPC-21.2-CUDA-11.2.2.eb new file: g/GDRCopy/GDRCopy-2.1-NVHPC-21.2-CUDA-11.3.0.eb new file: g/git/git-2.31.1.eb new file: m/MATLAB/MATLAB-2021a.eb new file: m/Molpro/Molpro-mpp-2021.1.0.linux_x86_64_openmp.eb new file: o/OpenMPI/OpenMPI-4.0.5-NVHPC-21.2-CUDA-11.2.2.eb new file: o/OpenMPI/OpenMPI-4.0.5-NVHPC-21.2-CUDA-11.3.0.eb new file: "o/OpenMPI/\\" new file: s/SoX/SoX-14.4.2-intel-2020b.eb modified: s/SoX/SoX-14.4.2.eb new file: t/Tcl/Tcl-8.6.11-GCCcore-10.2.0.eb new file: t/Tk/Tk-8.6.11-GCCcore-10.2.0.eb new file: t/Togl/Togl-2.0-GCCcore-10.2.0.eb new file: t/Togl/Togl-2.0_configure.patch new file: t/Togl/Togl-2.0_decl.patch new file: u/UCX/UCX-1.10.1-NVHPC-21.2-CUDA-11.3.0.eb new file: u/UCX/UCX-1.9.0-NVHPC-21.2-CUDA-11.2.2.eb new file: u/UCX/UCX-1.9.0-NVHPC-21.2-CUDA-11.3.0.eb new file: x/XCrySDen/XCrySDen-1.6.2-intel-2020b.eb
60 lines
1.8 KiB
Plaintext
60 lines
1.8 KiB
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'GDRCopy'
|
|
version = '2.1'
|
|
versionsuffix = '-CUDA-11.2.2'
|
|
|
|
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.2'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
github_account = 'NVIDIA'
|
|
source_urls = [GITHUB_SOURCE]
|
|
sources = ['v%(version)s.tar.gz']
|
|
checksums = ['cecc7dcc071107f77396f5553c9109790b6d2298ae29eb2dbbdd52b2a213e4ea']
|
|
|
|
builddependencies = [
|
|
('Autotools', '20200321'),
|
|
('pkg-config', '0.29.2'),
|
|
]
|
|
|
|
dependencies = [
|
|
('Check', '0.15.2'),
|
|
('CUDAcore', '11.2.2', '', True),
|
|
]
|
|
|
|
# This easyconfig only installs the library and binaries 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 CUDA=$EBROOTCUDACORE"
|
|
prebuildopts = "PATH=$PATH:/sbin " # ensures that ldconfig is found
|
|
buildopts = "config lib exes %s" % local_envopts
|
|
installopts = local_envopts
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/copybw', 'bin/copylat', 'bin/sanity', 'lib/libgdrapi.%s' % SHLIB_EXT],
|
|
'dirs': ['include'],
|
|
}
|
|
|
|
moduleclass = 'lib'
|