xyce: add new package (#22345)
This commit is contained in:
parent
196db55855
commit
a405811bfe
93
var/spack/repos/builtin/packages/xyce/package.py
Normal file
93
var/spack/repos/builtin/packages/xyce/package.py
Normal file
@ -0,0 +1,93 @@
|
||||
# Copyright 2013-2021 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 Xyce(CMakePackage):
|
||||
"""Xyce (rhymes with 'spice') is an open source, SPICE-compatible,
|
||||
high-performance analog circuit simulator, capable of solving extremely
|
||||
large circuit problems by supporting large-scale parallel computing
|
||||
platforms.
|
||||
Xyce also supports serial execution on all common desktop platforms,
|
||||
and small-scale parallel runs on Unix-like systems. In addition to analog
|
||||
electronic simulation, Xyce has also been used to investigate more general
|
||||
network systems, such as neural networks and power grids.
|
||||
"""
|
||||
|
||||
homepage = 'https://xyce.sandia.gov'
|
||||
git = 'https://github.com/Xyce/Xyce.git'
|
||||
url = 'https://github.com/Xyce/Xyce/archive/Release-7.2.0.tar.gz'
|
||||
maintainers = ['kuberry']
|
||||
|
||||
version('master', branch='master')
|
||||
version('7.2.0', 'cf49705278ecda46373784bb24925cb97f9017b6adff49e4416de146bdd6a4b5', preferred=True)
|
||||
|
||||
depends_on('cmake@3.13:', type='build')
|
||||
depends_on('flex')
|
||||
depends_on('bison')
|
||||
|
||||
variant('build_type', default='Release',
|
||||
description='CMake build type',
|
||||
values=('Debug', 'Release', 'RelWithDebInfo', 'MinSizeRel'))
|
||||
|
||||
variant('mpi', default=True, description='Enable MPI support')
|
||||
depends_on('mpi', when='+mpi')
|
||||
|
||||
variant('pymi', default=False, description='Enable Python Model Interpreter for Xyce')
|
||||
depends_on('python@3:', type=('build', 'link', 'run'), when='+pymi')
|
||||
depends_on('py-pip', type='run', when='+pymi')
|
||||
depends_on('py-pybind11@2.6.1:', when='+pymi')
|
||||
|
||||
# Xyce is built against an older version of Trilinos unlikely to be
|
||||
# used for any other purpose. The default settings for various
|
||||
# Trilinos variants would require the installation of many more
|
||||
# packages than are needed for Xyce, hence the ~variant for many
|
||||
# packages.
|
||||
# The default variants in Trilinos have been set for several
|
||||
# applications, namely xSDK, deal.ii, and DTK. Future changes to the
|
||||
# Trilinos recipe will disable all packages by default. At that
|
||||
# point, these ~variants can be removed from the following recipes.
|
||||
|
||||
depends_on('trilinos@12.12.1~adios2~alloptpkgs+amesos+amesos2+anasazi+aztec+belos~boost~cgns~chaco+complex~cuda~cuda_rdc~debug~dtk+epetra+epetraext~exodus+explicit_template_instantiation~float+fortran~glm~gtest+hdf5~hwloc~hypre+ifpack~ifpack2~intrepid~intrepid2~ipo+isorropia+kokkos~matio~mesquite~metis~minitensor~ml+mpi~muelu~mumps~netcdf+nox~openmp~phalanx~piro~pnetcdf~python~rol~rythmos+sacado~shards~shared~shylu~stk~stratimikos~strumpack+suite-sparse~superlu~superlu-dist~teko~tempus+teuchos+tpetra+trilinoscouplings~wrapper~x11~xsdkflags~zlib+zoltan~zoltan2+stokhos+amesos2basker+epetraextbtf+epetraextexperimental+epetraextgraphreorderings gotype=\'none\'', when="+mpi")
|
||||
depends_on('trilinos@12.12.1~adios2~alloptpkgs+amesos+amesos2+anasazi+aztec+belos~boost~cgns~chaco+complex~cuda~cuda_rdc~debug~dtk+epetra+epetraext~exodus+explicit_template_instantiation~float+fortran~glm~gtest+hdf5~hwloc~hypre+ifpack~ifpack2~intrepid~intrepid2~ipo+isorropia+kokkos~matio~mesquite~metis~minitensor~ml~mpi~muelu~mumps~netcdf+nox~openmp~phalanx~piro~pnetcdf~python~rol~rythmos+sacado~shards~shared~shylu~stk~stratimikos~strumpack+suite-sparse~superlu~superlu-dist~teko~tempus+teuchos+tpetra+trilinoscouplings~wrapper~x11~xsdkflags~zlib+zoltan~zoltan2+stokhos+amesos2basker+epetraextbtf+epetraextexperimental+epetraextgraphreorderings gotype=\'none\'', when="~mpi")
|
||||
|
||||
def cmake_args(self):
|
||||
spec = self.spec
|
||||
|
||||
trilinos = spec['trilinos']
|
||||
|
||||
cxx_flags = [self.compiler.cxx_pic_flag]
|
||||
try:
|
||||
cxx_flags.append(self.compiler.cxx11_flag)
|
||||
except ValueError:
|
||||
pass
|
||||
cxx_flags.append("-DXyce_INTRUSIVE_PCE -Wreorder -O3")
|
||||
|
||||
options = []
|
||||
options.extend([
|
||||
'-DTrilinos_DIR:PATH={0}'.format(trilinos.prefix),
|
||||
'-DCMAKE_CXX_FLAGS:STRING={0}'.format(' '.join(cxx_flags)),
|
||||
])
|
||||
|
||||
if '+mpi' in spec:
|
||||
options.append('-DCMAKE_CXX_COMPILER:STRING={0}'.format(spec['mpi'].mpicxx))
|
||||
else:
|
||||
options.append('-DCMAKE_CXX_COMPILER:STRING={0}'.format(self.compiler.cxx))
|
||||
|
||||
if '+shared' in spec:
|
||||
options.append('-DBUILD_SHARED_LIBS:BOOL=ON')
|
||||
else:
|
||||
options.append('-DBUILD_SHARED_LIBS:BOOL=OFF')
|
||||
|
||||
if '+pymi' in spec:
|
||||
pybind11 = spec['py-pybind11']
|
||||
python = spec['python']
|
||||
options.append('-DXyce_PYMI:BOOL=ON')
|
||||
options.append('-Dpybind11_DIR:PATH={0}'.format(pybind11.prefix))
|
||||
options.append('-DPython_ROOT_DIR:FILEPATH={0}'.format(python.prefix))
|
||||
options.append('-DPython_FIND_STRATEGY=LOCATION')
|
||||
|
||||
return options
|
Loading…
Reference in New Issue
Block a user