2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-11-15 13:30:44 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Citcoms(AutotoolsPackage):
|
|
|
|
"""CitcomS is a finite element code designed to solve compressible
|
|
|
|
thermochemical convection problems relevant to Earth's mantle."""
|
|
|
|
|
|
|
|
homepage = "https://geodynamics.org/cig/software/citcoms/"
|
|
|
|
url = "https://github.com/geodynamics/citcoms/releases/download/v3.3.1/CitcomS-3.3.1.tar.gz"
|
|
|
|
|
|
|
|
version('3.3.1', sha256='e3520e0a933e4699d31e86fe309b8c154ea6ecb0f42a1cf6f25e8d13d825a4b3')
|
|
|
|
version('3.2.0', sha256='773a14d91ecbb4a4d1e04317635fab79819d83c57b47f19380ff30b9b19cb07a')
|
|
|
|
|
|
|
|
variant('pyre', default=False, description='build Pyre modules')
|
|
|
|
variant('exchanger', default=False, description='use Exchanger')
|
|
|
|
variant('ggrd', default=False, description='use GGRD file support')
|
|
|
|
variant('cuda', default=False, description='use CUDA')
|
|
|
|
variant('hdf5', default=False, description='add HDF5 support')
|
|
|
|
|
|
|
|
# Required dependencies
|
|
|
|
depends_on('mpi')
|
|
|
|
depends_on('zlib')
|
|
|
|
|
|
|
|
# Optional dependencies
|
|
|
|
depends_on('exchanger', when='+exchanger')
|
|
|
|
depends_on('py-pythia', type=('build', 'run'), when='+pyre')
|
|
|
|
depends_on('hc', when='+ggrd')
|
|
|
|
depends_on('cuda', when='+cuda')
|
|
|
|
depends_on('hdf5+mpi', when='+hdf5')
|
|
|
|
|
|
|
|
conflicts('+pyre', when='@3.3:', msg='Pyre support was removed from 3.3+')
|
|
|
|
conflicts('+exchanger', when='@3.3:', msg='Exchanger support was removed from 3.3+')
|
|
|
|
|
2019-11-30 05:00:44 +08:00
|
|
|
def setup_build_environment(self, env):
|
2018-11-15 13:30:44 +08:00
|
|
|
if '+ggrd' in self.spec:
|
2019-11-30 05:00:44 +08:00
|
|
|
env.set('HC_HOME', self.spec['hc'].prefix)
|
2018-11-15 13:30:44 +08:00
|
|
|
|
|
|
|
def configure_args(self):
|
|
|
|
args = ['CC={0}'.format(self.spec['mpi'].mpicc)]
|
|
|
|
|
|
|
|
# Flags only valid in 3.2
|
|
|
|
if self.spec.satisfies('@:3.2'):
|
|
|
|
if '+pyre' in self.spec:
|
|
|
|
args.append('--with-pyre')
|
|
|
|
else:
|
|
|
|
args.append('--without-pyre')
|
|
|
|
|
|
|
|
if '+exchanger' in self.spec:
|
|
|
|
args.append('--with-exchanger')
|
|
|
|
else:
|
|
|
|
args.append('--without-exchanger')
|
|
|
|
|
|
|
|
if '+ggrd' in self.spec:
|
|
|
|
args.append('--with-ggrd')
|
|
|
|
else:
|
|
|
|
args.append('--without-ggrd')
|
|
|
|
|
|
|
|
if '+cuda' in self.spec:
|
|
|
|
args.append('--with-cuda')
|
|
|
|
else:
|
|
|
|
args.append('--without-cuda')
|
|
|
|
|
|
|
|
if '+hdf5' in self.spec:
|
|
|
|
args.extend([
|
|
|
|
'--with-hdf5',
|
|
|
|
# https://github.com/geodynamics/citcoms/issues/2
|
|
|
|
'CPPFLAGS=-DH5_USE_16_API',
|
|
|
|
'CFLAGS=-DH5_USE_16_API'
|
|
|
|
])
|
|
|
|
else:
|
|
|
|
args.append('--without-hdf5')
|
|
|
|
|
|
|
|
return args
|