151 lines
6.2 KiB
Python
151 lines
6.2 KiB
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Precice(CMakePackage):
|
|
"""preCICE (Precise Code Interaction Coupling Environment) is a
|
|
coupling library for partitioned multi-physics simulations.
|
|
Partitioned means that preCICE couples existing programs (solvers)
|
|
capable of simulating a subpart of the complete physics involved in
|
|
a simulation."""
|
|
|
|
homepage = 'https://www.precice.org'
|
|
git = 'https://github.com/precice/precice.git'
|
|
url = 'https://github.com/precice/precice/archive/v1.2.0.tar.gz'
|
|
maintainers = ['fsimonis', 'MakisH']
|
|
|
|
version('develop', branch='develop')
|
|
version('2.0.2', sha256='72864480f32696e7b6da94fd404ef5cd6586e2e1640613e46b75f1afac8569ed')
|
|
version('2.0.1', sha256='e4fe2d2063042761ab325f8c802f88ae088c90862af288ad1a642967d074bd50')
|
|
version('2.0.0', sha256='c8979d366f06e35626a8da08a1c589df77ec13972eb524a1ba99a011e245701f')
|
|
version('1.6.1', sha256='7d0c54faa2c69e52304f36608d93c408629868f16f3201f663a0f9b2008f0763')
|
|
version('1.6.0', sha256='c3b16376fda9eb3449adb6cc3c1e267c3dc792a5d118e37d93a32a59b5a4bc6f')
|
|
version('1.5.2', sha256='051e0d7655a91f8681901e5c92812e48f33a5779309e2f104c99f5a687e1a418')
|
|
version('1.5.1', sha256='fbe151f1a9accf9154362c70d15254935d4f594d189982c3a99fdb3dd9d9e665')
|
|
version('1.5.0', sha256='a2a794becd08717e3049252134ae35692fed71966ed32e22cca796a169c16c3e')
|
|
version('1.4.1', sha256='dde4882edde17882340f9f601941d110d5976340bd71af54c6e6ea22ae56f1a5')
|
|
version('1.4.0', sha256='3499bfc0941fb9f004d5e32eb63d64f93e17b4057fab3ada1cde40c8311bd466')
|
|
version('1.3.0', sha256='610322ba1b03df8e8f7d060d57a6a5afeabd5db4e8c4a638d04ba4060a3aec96')
|
|
version('1.2.0', sha256='0784ecd002092949835151b90393beb6e9e7a3e9bd78ffd40d18302d6da4b05b')
|
|
# Skip version 1.1.1 entirely, the cmake was lacking install.
|
|
|
|
variant('mpi', default=True, description='Enable MPI support')
|
|
variant('petsc', default=True, description='Enable PETSc support')
|
|
variant('python', default=False, description='Enable Python support')
|
|
variant('shared', default=True, description='Build shared libraries')
|
|
|
|
depends_on('cmake@3.5:', type='build')
|
|
depends_on('cmake@3.10.2:', type='build', when='@1.4:')
|
|
depends_on('boost@1.60.0:')
|
|
depends_on('boost@1.65.1:', when='@1.4:')
|
|
depends_on('boost@:1.72.99', when='@:2.0.2')
|
|
depends_on('eigen@3.2:')
|
|
depends_on('eigen@:3.3.7', type='build', when='@:1.5') # bug in prettyprint
|
|
depends_on('libxml2')
|
|
depends_on('mpi', when='+mpi')
|
|
depends_on('petsc@3.6:', when='+petsc')
|
|
|
|
# Python 3 support was added in version 2.0
|
|
depends_on('python@2.7:2.8', when='@:1.9+python', type=('build', 'run'))
|
|
depends_on('python@3:', when='@2:+python', type=('build', 'run'))
|
|
|
|
# numpy 1.17+ requires Python 3
|
|
depends_on('py-numpy@:1.16', when='@:1.9+python', type=('build', 'run'))
|
|
depends_on('py-numpy@1.17:', when='@2:+python', type=('build', 'run'))
|
|
|
|
# We require C++11 compiler support as well as
|
|
# library support for time manipulators (N2071, N2072)
|
|
conflicts('%gcc@:4')
|
|
conflicts('%clang@:3.7')
|
|
conflicts('%intel@:14')
|
|
conflicts('%pgi@:14')
|
|
|
|
def cmake_args(self):
|
|
"""Populate cmake arguments for precice."""
|
|
spec = self.spec
|
|
|
|
# The xSDK installation policies were implemented after 1.5.2
|
|
xsdk_mode = spec.satisfies("@1.6:")
|
|
|
|
# Select the correct CMake variables by version
|
|
mpi_option = "MPI"
|
|
if spec.satisfies("@2:"):
|
|
mpi_option = "PRECICE_MPICommunication"
|
|
petsc_option = "PETSC"
|
|
if spec.satisfies("@2:"):
|
|
petsc_option = "PRECICE_PETScMapping"
|
|
python_option = "PYTHON"
|
|
if spec.satisfies("@2:"):
|
|
python_option = "PRECICE_PythonActions"
|
|
|
|
def variant_bool(feature, on='ON', off='OFF'):
|
|
"""Ternary for spec variant to ON/OFF string"""
|
|
if feature in spec:
|
|
return on
|
|
return off
|
|
|
|
cmake_args = [
|
|
'-DBUILD_SHARED_LIBS:BOOL=%s' % variant_bool('+shared'),
|
|
]
|
|
|
|
cmake_args.append('-D%s:BOOL=%s' % (mpi_option, variant_bool('+mpi')))
|
|
|
|
# Boost
|
|
if xsdk_mode:
|
|
cmake_args.append('-DTPL_ENABLE_BOOST=ON')
|
|
cmake_args.append('-DBOOST_ROOT=%s' % spec['boost'].prefix)
|
|
|
|
# Eigen3
|
|
if xsdk_mode:
|
|
cmake_args.append('-DTPL_ENABLE_EIGEN3=ON')
|
|
cmake_args.append(
|
|
'-DEIGEN3_INCLUDE_DIR=%s' % spec['eigen'].headers.directories[0])
|
|
|
|
# LibXML2
|
|
if xsdk_mode:
|
|
cmake_args.append('-DTPL_ENABLE_LIBXML2=ON')
|
|
libxml2_includes = spec['libxml2'].headers.directories[0]
|
|
cmake_args.extend([
|
|
'-DLIBXML2_INCLUDE_DIRS=%s' % libxml2_includes,
|
|
'-DLIBXML2_LIBRARIES=%s' % spec['libxml2'].libs[0],
|
|
])
|
|
|
|
# PETSc
|
|
if '+petsc' in spec:
|
|
if xsdk_mode:
|
|
cmake_args.append('-DTPL_ENABLE_PETSC:BOOL=ON')
|
|
else:
|
|
cmake_args.append('-D%s:BOOL=ON' % petsc_option)
|
|
cmake_args.extend([
|
|
'-DPETSC_DIR=%s' % spec['petsc'].prefix,
|
|
'-DPETSC_ARCH=.'
|
|
])
|
|
else:
|
|
cmake_args.append('-D%s:BOOL=OFF' % petsc_option)
|
|
|
|
# Python
|
|
if '+python' in spec:
|
|
python_library = spec['python'].libs[0]
|
|
python_include = spec['python'].headers.directories[0]
|
|
numpy_include = join_path(
|
|
spec['py-numpy'].prefix,
|
|
spec['python'].package.site_packages_dir,
|
|
'numpy', 'core', 'include')
|
|
if xsdk_mode:
|
|
cmake_args.append('-DTPL_ENABLE_PYTHON:BOOL=ON')
|
|
else:
|
|
cmake_args.append('-D%s:BOOL=ON' % python_option)
|
|
cmake_args.extend([
|
|
'-DPYTHON_INCLUDE_DIR=%s' % python_include,
|
|
'-DNumPy_INCLUDE_DIR=%s' % numpy_include,
|
|
'-DPYTHON_LIBRARY=%s' % python_library
|
|
])
|
|
else:
|
|
cmake_args.append('-D%s:BOOL=OFF' % python_option)
|
|
|
|
return cmake_args
|