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

new file: b/Boost/Boost-1.79.0-intel-compilers-2022.1.0.eb new file: c/CheMPS2/CheMPS2-1.8.12-intel-2022a.eb new file: g/gau2grid/gau2grid-2.0.7-intel-2022a-lmax-5-psi4.eb new file: m/mctc-lib/mctc-lib-0.3.1-GCC-11.2.0.eb new file: m/msgpack/msgpack-1.0.5-GCCcore-11.3.0.eb new file: p/Pint/Pint-0.20.1-GCCcore-11.3.0.eb new file: p/pydantic/pydantic-1.10.6-GCCcore-11.3.0.eb new file: q/qcengine/qcengine-0.24.1-foss-2021b.eb new file: q/qcengine/qcengine-0.24.1-psi4.patch new file: q/qcengine/qcengine-0.26.0-foss-2021b.eb new file: q/qcengine/qcengine-0.26.0-psi4.patch new file: s/simple-dftd3/simple-dftd3-0.7.0-foss-2021b.eb deleted: c/CheMPS2/CheMPS2-1.8.9-intel-2021a.eb
50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
# IT4Innovations 2023
|
|
# JK
|
|
# J. Sassmannshausen (Imperial College London/UK)
|
|
|
|
easyblock = 'CMakeMake'
|
|
|
|
name = 'gau2grid'
|
|
version = '2.0.7'
|
|
local_lmax = 5
|
|
# custom configuration, to be used as dependency for PSI4
|
|
versionsuffix = '-lmax-%s-psi4' % local_lmax
|
|
|
|
homepage = 'https://github.com/dgasmith/gau2grid'
|
|
description = """A collocation code for computing gaussians on a grid of the form:
|
|
|
|
out_Lp = x^l y^m z^n \\sum_i coeff_i e^(exponent_i * (|center - p|)^2)
|
|
|
|
Where the returned matrix dimension are the angular momentum (L) by number of
|
|
requested points (p)."""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2022a'}
|
|
|
|
source_urls = ['https://github.com/dgasmith/gau2grid/archive']
|
|
sources = ['v%(version)s.tar.gz']
|
|
checksums = ['66e7205646e1e3685e5dd4eea8281fc92b0b8b45ce97ae24b72a09e15a3fd62f']
|
|
|
|
builddependencies = [
|
|
('CMake', '3.23.1'),
|
|
]
|
|
|
|
dependencies = [
|
|
('Python', '3.10.4'),
|
|
('SciPy-bundle', '2022.05'),
|
|
]
|
|
|
|
# preventing system Python to be picked up:
|
|
local_common_configopts = '-DPYTHON_EXECUTABLE=$EBROOTPYTHON/bin/python -DMAX_AM=%s' % local_lmax
|
|
# perform iterative build to get both static and shared libraries
|
|
configopts = [
|
|
local_common_configopts + ' -DBUILD_SHARED_LIBS=OFF',
|
|
local_common_configopts + ' -DBUILD_SHARED_LIBS=ON',
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib/libgg.a', 'lib/libgg.%s' % SHLIB_EXT],
|
|
'dirs': ['include', 'share'],
|
|
}
|
|
|
|
moduleclass = 'chem'
|