From 9fe63585690343935e5d802386b9cd966553dc70 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 5 Oct 2020 13:50:04 -0700 Subject: [PATCH] Change .spinit to .spiceinit --- compiler/characterizer/stimuli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/characterizer/stimuli.py b/compiler/characterizer/stimuli.py index da8e16f0..785b2b3b 100644 --- a/compiler/characterizer/stimuli.py +++ b/compiler/characterizer/stimuli.py @@ -319,7 +319,7 @@ class stimuli(): # ngspice 27+ supports threading with "set num_threads=4" in the stimulus file or a .spiceinit # Measurements can't be made with a raw file set in ngspice # -r {2}timing.raw - ng_cfg = open("{}.spinit".format(OPTS.openram_temp), "w") + ng_cfg = open("{}.spiceinit".format(OPTS.openram_temp), "w") ng_cfg.write("set num_threads={}\n".format(OPTS.num_threads)) ng_cfg.close()