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

new file: c/ctffind/ctffind-4.1.14-foss-2021a.eb new file: f/FFTW.MPI/FFTW.MPI-3.3.8-NVHPC-22.2.eb modified: f/FFTW/FFTW-3.3.10-NVHPC-22.2-amd.eb new file: f/FFTW/FFTW-3.3.8-NVHPC-22.2-amd.eb new file: f/FFTW/FFTW-3.3.8-NVHPC-22.2.eb modified: h/HDF5/HDF5-1.12.1-NVHPC-22.2.eb new file: h/HDF5/HDF5-1.12.2-gompi-2022a.eb new file: h/HDF5/HDF5-1.12.2-iimpi-2022a.eb new file: l/libxsmm/libxsmm-1.17-GCC-11.3.0.eb new file: p/PLUMED/PLUMED-2.8.0-foss-2022a.eb new file: q/QD/QD-2.3.17-NVHPC-22.2.eb modified: q/QuantumESPRESSO/QuantumESPRESSO-7.1-foss-2022a.eb modified: q/QuantumESPRESSO/QuantumESPRESSO-7.1-intel-2022a.eb new file: r/RELION/RELION-4.0-beta-foss-2021a.eb new file: s/ScaLAPACK/ScaLAPACK-3.0-NVHPC-22.2.eb new file: v/VASP/VASP-6.3.2-NVHPC-22.2-CUDA-11.6.0-adjust-makefile.patch modified: v/VASP/VASP-6.3.2-NVHPC-22.2-CUDA-11.6.0.eb new file: x/xxd/xxd-8.2.4220-GCCcore-11.3.0.eb deleted: f/FFTW.MPI/FFTW.MPI-3.3.10-gompi-2022a.eb deleted: h/HDF5/HDF5-1.13.1-gompi-2022a.eb deleted: h/HDF5/HDF5-1.13.1-iimpi-2022a.eb
50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
# IT4Innovations 2022
|
|
# LK JK
|
|
|
|
easyblock = 'CMakeMake'
|
|
|
|
name = 'ScaLAPACK'
|
|
version = '3.0'
|
|
|
|
homepage = 'https://www.netlib.org/scalapack/'
|
|
description = """The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines
|
|
redesigned for distributed memory MIMD parallel computers."""
|
|
|
|
toolchain = {'name': 'NVHPC', 'version': '22.2'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
# https://github.com/amd/scalapack/archive/3.0.tar.gz
|
|
source_urls = ['https://github.com/amd/scalapack/archive/']
|
|
sources = ['%(version)s.tar.gz']
|
|
checksums = ['6e6f3578f44a8e64518d276e7580530599ecfa8729f568303ed2590688e7096f']
|
|
|
|
builddependencies = [
|
|
('CMake', '3.18.4'),
|
|
]
|
|
|
|
dependencies = [
|
|
('OpenMPI', '4.1.2', '-CUDA-11.6.0'),
|
|
('BLIS', '3.0.1'),
|
|
('libFLAME', '5.2.0'),
|
|
]
|
|
|
|
# Config Opts based on AOCL User Guide:
|
|
# https://developer.amd.com/wp-content/resources/AOCL_User%20Guide_2.2.pdf
|
|
|
|
configopts = '-DBUILD_SHARED_LIBS=ON '
|
|
configopts += '-DBLAS_LIBRARIES="$EBROOTBLIS/lib/libblis-mt.a" '
|
|
configopts += '-DLAPACK_LIBRARIES="$EBROOTLIBFLAME/lib/libflame.a" '
|
|
configopts += '-DCMAKE_C_COMPILER=mpicc '
|
|
configopts += '-DCMAKE_Fortran_COMPILER=mpif90 '
|
|
configopts += '-DUSE_OPTIMIZED_LAPACK_BLAS=ON '
|
|
configopts += '-DUSE_F2C=ON '
|
|
configopts += '-DCMAKE_Fortran_FLAGS="-lpthread -fopenmp $DCMAKE_Fortran_FLAGS" '
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib/libscalapack.%s' % SHLIB_EXT, 'lib64/libscalapack.%s' % SHLIB_EXT],
|
|
'dirs': ["lib", "lib64"],
|
|
}
|
|
|
|
|
|
moduleclass = 'numlib'
|