1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Copyright 2013-2022 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.package 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("github.master", branch="master", preferred=True)
version("7.5.0", "854d7d5e19e0ee2138d1f20f10f8f27f2bebb94ec81c157040955cff7250dacd")
version("7.4.0", "2d6bc1b7377834b2e0bf50131e96728c5be83dbb3548e765bb48911067c87c91")
version("7.3.0", "43869a70967f573ff6f00451db3f4642684834bdad1fd3926380e3789016b446")
version("7.2.0", "cf49705278ecda46373784bb24925cb97f9017b6adff49e4416de146bdd6a4b5")
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("plugin", default=False, description="Enable plug-in support for Xyce")
depends_on("adms", type=("build", "run"), when="+plugin")
variant("shared", default=False, description="Enable shared libraries for Xyce")
conflicts(
"~shared",
when="+plugin",
msg="Disabling shared libraries is incompatible with the activation of plug-in support",
)
# any option other than cxxstd=11 would be ignored in Xyce
# this defaults to 11, consistent with what will be used,
# and produces an error if any other value is attempted
cxxstd_choices = ["11"]
variant("cxxstd", default="11", values=cxxstd_choices, multi=False)
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:", type=("build", "link"), when="+pymi")
depends_on(
"trilinos"
"+amesos+amesos2+anasazi+aztec+basker+belos+complex+epetra+epetraext"
"+explicit_template_instantiation+fortran+ifpack+isorropia+kokkos+nox"
"+sacado+suite-sparse+trilinoscouplings+zoltan+stokhos+epetraextbtf"
"+epetraextexperimental+epetraextgraphreorderings"
)
# tested versions of Trilinos for everything up to 7.4.0
depends_on("trilinos@12.12.1:13.2.0", when="@:7.4.0")
depends_on("trilinos gotype=all cxxstd=11", when="^trilinos@:12.15")
# pymi requires Kokkos/KokkosKernels >= 3.3, Trilinos 13.2 onward
depends_on("trilinos@13.2.0:", when="+pymi")
# Propagate variants to trilinos:
for _variant in ("mpi",):
depends_on("trilinos~" + _variant, when="~" + _variant)
depends_on("trilinos+" + _variant, when="+" + _variant)
# The default settings for various Trilinos variants would require the
# installation of many more packages than are needed for Xyce.
depends_on("trilinos~float~ifpack2~ml~muelu~zoltan2")
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))
options.append(self.define_from_variant("Xyce_PLUGIN_SUPPORT", "plugin"))
options.append(self.define_from_variant("BUILD_SHARED_LIBS", "shared"))
options.append(self.define_from_variant("CMAKE_CXX_STANDARD", "cxxstd"))
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
|