From eadf7eedc5097e6fe6c13a340ec1980f49eb40ce Mon Sep 17 00:00:00 2001 From: mrg Date: Fri, 21 May 2021 10:01:37 -0700 Subject: [PATCH] Prioritize Xyce to last until bugs resolved. --- compiler/characterizer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/characterizer/__init__.py b/compiler/characterizer/__init__.py index d5bcdbc6..281be78a 100644 --- a/compiler/characterizer/__init__.py +++ b/compiler/characterizer/__init__.py @@ -32,7 +32,7 @@ if not OPTS.analytical_delay: if OPTS.spice_exe=="" or OPTS.spice_exe==None: debug.error("{0} not found. Unable to perform characterization.".format(OPTS.spice_name), 1) else: - (OPTS.spice_name, OPTS.spice_exe) = get_tool("spice", ["Xyce", "ngspice", "ngspice.exe", "hspice", "xa"]) + (OPTS.spice_name, OPTS.spice_exe) = get_tool("spice", ["ngspice", "ngspice.exe", "hspice", "xa", "Xyce"]) if OPTS.spice_name == "Xyce": (OPTS.mpi_name, OPTS.mpi_exe) = get_tool("mpi", ["mpirun"])