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

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
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
name = 'NVHPC'
|
|
version = '23.7'
|
|
|
|
homepage = 'https://developer.nvidia.com/hpc-sdk/'
|
|
description = """C, C++ and Fortran compilers included with the NVIDIA HPC SDK (previously: PGI)"""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
# By downloading, you accept the HPC SDK Software License Agreement (https://docs.nvidia.com/hpc-sdk/eula/index.html)
|
|
accept_eula = True
|
|
source_urls = ['https://developer.download.nvidia.com/hpc-sdk/%(version)s/']
|
|
local_tarball_tmpl = 'nvhpc_2023_%%(version_major)s%%(version_minor)s_Linux_%s_cuda_multi.tar.gz'
|
|
sources = [local_tarball_tmpl % '%(arch)s']
|
|
checksums = ['fea91d95ff18bca1ce7afde50371caa02001ade8bed6ddfc5ff70862ccbebece']
|
|
|
|
|
|
local_gccver = '13.2.0'
|
|
dependencies = [
|
|
('GCCcore', local_gccver),
|
|
('binutils', '2.40', '', ('GCCcore', local_gccver)),
|
|
('numactl', '2.0.16')
|
|
]
|
|
|
|
default_cuda_version = '12.2'
|
|
|
|
import os
|
|
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
|
|
cuda_compute_capabilities = "8.0"
|
|
else:
|
|
cuda_compute_capabilities = "7.0"
|
|
|
|
moduleclass = 'compiler'
|