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

new file: e/Embree/Embree-3.2.0-intel-2017a.eb new file: f/freeglut/freeglut-3.0.0-intel-2017a-Mesa-18.1.3.eb new file: l/LAMMPS/LAMMPS-22Jun2018-foss-2017a.eb new file: l/LAMMPS/LAMMPS-22Jun2018-foss-2017a.patch new file: l/LLVM/LLVM-6.0.0-Py-2.7.eb new file: l/LLVM/LLVM-6.0.1-GCC-6.3.0-2.27.eb new file: m/Mesa/Mesa-18.1.3-intel-2017a.eb new file: o/OSPRay/OSPRay-1.6.1-intel-2017a.eb new file: o/OpenFOAM/OpenFOAM-5.0-intel-2017a.eb new file: p/ParaView/ParaView-5.4.1-Qt.patch new file: p/ParaView/ParaView-5.4.1-intel-2017a-mpi.eb new file: p/ParaView/ParaView-5.5.2-intel-2017.patch new file: p/ParaView/ParaView-5.5.2-intel-2017a-mpi-OSPRay.eb new file: s/SCOTCH/SCOTCH-6.0.5a-intel-2017a.eb deleted: l/LLVM/LLVM-6.0.0-GCC-6.3.0-2.27.eb Former-commit-id: a61c77eba93686847c3adfbc5a1df86bbb15366f
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'CmdCp'
|
|
|
|
name = 'LAMMPS'
|
|
version = '22Jun2018'
|
|
|
|
homepage = 'http://lammps.sandia.gov'
|
|
description = """LAMMPS is a classical molecular dynamics code,
|
|
and an acronym for Large-scale Atomic/Molecular Massively Parallel Simulator.
|
|
Has potentials for solid-state materials (metals, semiconductors) and soft
|
|
matter (biomolecules, polymers) and coarse-grained or mesoscopic systems.
|
|
It can be used to model atoms or, more generically, as a parallel particle simulator at the atomic,
|
|
meso, or continuum scale.
|
|
"""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2017a'}
|
|
|
|
source_urls = ['https://github.com/lammps/lammps/archive']
|
|
sources = ['patch_17Jan2018.tar.gz']
|
|
|
|
patches = [
|
|
'LAMMPS-22Jun2018-foss-2017a.patch',
|
|
]
|
|
|
|
dependencies = [
|
|
('tbb', '2017.6.196', '', True),
|
|
]
|
|
|
|
builddependencies = [
|
|
('Py', '2.7', '', True),
|
|
('CMake', '3.5.2', '', True)
|
|
]
|
|
|
|
commands = "cd src && make yes-kokkos && "
|
|
commands += "make yes-user-phonon && make yes-misc && "
|
|
commands += "make lib-reax args='-m mpi' && make yes-reax && "
|
|
commands += "make yes-kspace && make yes-manybody && make yes-molecule && "
|
|
commands += "make yes-qeq && make yes-rigid && make yes-user-misc && "
|
|
commands += "make yes-user-reaxc && make yes-user-omp && "
|
|
commands += "make -j 16 omp && mv lmp_omp lammps"
|
|
|
|
cmds_map = [('.*', commands)]
|
|
|
|
files_to_copy = [
|
|
(['src/lammps'], 'bin'),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/lammps'],
|
|
'dirs': [''],
|
|
}
|
|
|
|
moduleclass = 'chem'
|