Change .spinit to .spiceinit

This commit is contained in:
mrg 2020-10-05 13:50:04 -07:00
parent 64cc620440
commit 9fe6358569
1 changed files with 1 additions and 1 deletions

View File

@ -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()