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

new file: a/AOCC/AOCC-4.1.0-GCCcore-12.2.0.eb new file: a/AOCL/AOCL-4.1.0-CCcore-12.2.0.eb new file: a/Amber/Amber-22.4-foss-2022a-AmberTools-23-CUDA-11.7.0.eb new file: c/Clang/Clang-17.0.2-GCCcore-12.2.0-CUDA-12.2.0.eb new file: c/Clang/Clang-17.0.2-GCCcore-12.2.0.eb new file: g/GROMACS/GROMACS-2023-foss-2022a-CUDA-12.0.0-PLUMED-2.9.0.eb new file: g/GROMACS/GROMACS-2023.3-foss-2022a-CUDA-12.0.0-v2.eb new file: l/LAMMPS/LAMMPS-15Jun2023-foss-2022a-kokkos-sm80.eb new file: l/LAMMPS/LAMMPS-2Aug2023-foss-2022a-kokkos-sm80.eb new file: l/LAMMPS/LAMMPS-2Aug2023-foss-2022a-kokkos.eb new file: l/LAMMPS/LAMMPS-2Aug2023_update1-foss-2021b-CUDA-12.2.0-kokkos.eb new file: l/LAMMPS/LAMMPS-2Aug2023_update1-foss-2021b-kokkos.eb new file: m/MATLAB/MATLAB-2023b.eb new file: n/NCCL/NCCL-2.18.3-GCCcore-11.3.0-CUDA-12.2.0.eb new file: o/OVITO/OVITO-3.9.2-gompi-2022a-basic.eb new file: o/OVITO/OVITO-3.9.2-gompi-2022b-basic.eb new file: o/OpenMolcas/OpenMolcas-23.06-intel-2022a-noGA.eb modified: o/OpenMolcas/OpenMolcas-23.06-intel-2022a.eb new file: p/PLUMED/PLUMED-2.9.0-foss-2022a.eb new file: q/Qt6/Qt6-6.5.3-GCCcore-12.2.0.eb new file: "q/Qt6/\\" new file: u/UCX-CUDA/UCX-CUDA-1.14.1-GCCcore-11.3.0-CUDA-12.2.0.eb
65 lines
2.2 KiB
Plaintext
65 lines
2.2 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'PLUMED'
|
|
version = '2.9.0'
|
|
|
|
homepage = 'https://www.plumed.org'
|
|
description = """PLUMED is an open source library for free energy calculations in molecular systems which
|
|
works together with some of the most popular molecular dynamics engines. Free energy calculations can be
|
|
performed as a function of many order parameters with a particular focus on biological problems, using
|
|
state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD.
|
|
The software, written in C++, can be easily interfaced with both fortran and C/C++ codes.
|
|
"""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2022a'}
|
|
toolchainopts = {'usempi': 'True'}
|
|
|
|
source_urls = ['https://github.com/plumed/plumed2/releases/download/v%(version)s/']
|
|
sources = [SOURCE_TGZ]
|
|
checksums = ['534db9ccb9446844f3e99ecdff091ad79c014ce9c4afe212c1536e19f85ab0d1']
|
|
|
|
builddependencies = [
|
|
('xxd', '8.2.4220'),
|
|
]
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.12'),
|
|
('GSL', '2.7'),
|
|
('Python', '3.10.4'),
|
|
('SciPy-bundle', '2022.05'),
|
|
('Boost', '1.79.0'),
|
|
]
|
|
|
|
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
|
|
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
|
|
configopts += '--enable-boost_graph --enable-boost_serialization '
|
|
configopts += '--enable-asmjit '
|
|
configopts += '--enable-mpi '
|
|
prebuildopts = 'source sourceme.sh && '
|
|
|
|
# make sure that ld.gold linker is used
|
|
# required to work around problems like "ld: BFD (GNU Binutils) 2.30 assertion fail elf.c:3564"
|
|
# (problem with intel build but maintain consistency between easyconfigs)
|
|
buildopts = 'LD_RO="ld.gold -r -o"'
|
|
|
|
# install path for PLUMED libraries must be included in $LD_LIBRARY_PATH when Python bindings get built/installed
|
|
preinstallopts = 'LD_LIBRARY_PATH="%(installdir)s/lib:$LD_LIBRARY_PATH" '
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/plumed', 'lib/libplumedKernel.%s' % SHLIB_EXT, 'lib/libplumed.%s' % SHLIB_EXT],
|
|
'dirs': [],
|
|
}
|
|
|
|
sanity_check_commands = ["python -c 'import plumed'"]
|
|
|
|
modextrapaths = {
|
|
'PLUMED_KERNEL': 'lib/libplumedKernel.%s' % SHLIB_EXT,
|
|
'PLUMED_ROOT': 'lib/plumed',
|
|
'PYTHONPATH': 'lib/plumed/python',
|
|
}
|
|
|
|
moduleclass = 'chem'
|