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

new file: c/CP2K/CP2K-8.2-foss-2020b.eb new file: c/CP2K/CP2K-8.2-intel-2020b.eb modified: d/DFTB+/DFTB+-21.1-intel-2020b-Python-3.8.6-karolina.eb new file: g/GROMACS/GROMACS-2021.4-fosscuda-2020b-PLUMED-2.7.3.eb modified: g/GROMACS/GROMACS-2021.4-intel-2020b-PLUMED-2.7.2.eb new file: g/GROMACS/GROMACS-2021.4-intel-2020b-PLUMED-2.7.3.eb new file: i/intel-compilers/intel-compilers-2021.4.0.eb new file: l/Libint/Libint-2.6.0-GCC-10.2.0-lmax-6-cp2k.eb new file: l/libxc/libxc-5.1.3-GCC-10.2.0.eb modified: n/NVHPC/NVHPC-21.11.eb new file: o/Octopus/Octopus-11.3-intel-2020b-mpi.eb new file: o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.11-CUDA-11.4.1-v2.eb new file: o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.11-CUDA-11.4.1.eb new file: p/PETSc/PETSc-3.16.2-intel-2020b.eb new file: p/PLUMED/PLUMED-2.7.3-fosscuda-2020b.eb new file: p/phonopy/phonopy-2.12.0-conda.eb new file: u/UCX/UCX-1.11.2-GCCcore-11.2.0.eb new file: u/UCX/UCX-1.11.2-NVHPC-21.11-CUDA-11.4.1.eb new file: v/VASP/VASP-5.4.4-intel-2020a-mkl=sequential-karolina.eb
53 lines
1.9 KiB
Plaintext
53 lines
1.9 KiB
Plaintext
# IT4Innovations
|
|
# LK 2021
|
|
|
|
name = 'Libint'
|
|
version = '2.6.0'
|
|
local_lmax = 6
|
|
# custom configuration, to be used as dependency for CP2K
|
|
versionsuffix = '-lmax-%s-cp2k' % local_lmax
|
|
|
|
homepage = 'https://github.com/evaleev/libint'
|
|
description = """Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body
|
|
matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '10.2.0'}
|
|
toolchainopts = {'pic': True, 'cstd': 'c++11'}
|
|
|
|
source_urls = ['https://github.com/evaleev/libint/archive']
|
|
sources = ['v%(version)s.tar.gz']
|
|
patches = [
|
|
'Libint-%(version)s_fix-LIBINT2-MAX-AM-default1.patch',
|
|
'Libint-2.6.0_remove-test-eri.patch',
|
|
]
|
|
checksums = [
|
|
'4ae47e8f0b5632c3d2a956469a7920896708e9f0e396ec10071b8181e4c8d9fa', # v2.6.0.tar.gz
|
|
# Libint-2.6.0_fix-LIBINT2-MAX-AM-default1.patch
|
|
'e5445c89639d113be7726c2bc1164d2f6ea75e76abbb1c94acd55c508693d5ab',
|
|
# Libint-2.6.0_remove-test-eri.patch
|
|
'e47868901250078adeb35b80ab866ba8063ad9756881d1b557cb925334df653b',
|
|
]
|
|
|
|
builddependencies = [
|
|
('Autotools', '20200321'),
|
|
('GMP', '6.2.0'),
|
|
('Boost', '1.74.0'),
|
|
('Eigen', '3.3.8'),
|
|
('Python', '3.8.6'),
|
|
]
|
|
|
|
# configure options as required by CP2K,
|
|
# see Jenkinsfile in https://github.com/cp2k/libint-cp2k
|
|
local_eri_max_am = '%s,%s' % (local_lmax, local_lmax - 1)
|
|
local_eri23_max_am = '%s,%s' % (local_lmax + 2, local_lmax + 1)
|
|
|
|
libint_compiler_configopts = '--enable-eri=1 --enable-eri2=1 --enable-eri3=1 --with-max-am=%s ' % local_lmax
|
|
libint_compiler_configopts += '--with-eri-max-am=%s ' % local_eri_max_am
|
|
libint_compiler_configopts += '--with-eri2-max-am=%s ' % local_eri23_max_am
|
|
libint_compiler_configopts += '--with-eri3-max-am=%s ' % local_eri23_max_am
|
|
libint_compiler_configopts += '--enable-generic-code --disable-unrolling'
|
|
|
|
with_fortran = True
|
|
|
|
moduleclass = 'chem'
|