mirror of https://github.com/VLSIDA/OpenRAM.git
Changed the standalone characterizer interface
This commit is contained in:
parent
149abe1dbd
commit
8de3be8529
|
|
@ -1,4 +1,4 @@
|
|||
from openram.modules import sram_config
|
||||
from openram import sram_config
|
||||
from math import ceil
|
||||
import re
|
||||
|
||||
|
|
|
|||
|
|
@ -62,8 +62,8 @@ s = fake_sram(name=OPTS.output_name,
|
|||
num_spare_rows=OPTS.num_spare_rows,
|
||||
num_spare_cols=OPTS.num_spare_cols)
|
||||
|
||||
debug.check(os.path.exists(args[1], "Spice netlist file {} not found.".format(args[1])))
|
||||
debug.check(os.path.exists(args[2], "HTML report file {} not found.".format(args[2])))
|
||||
debug.check(os.path.exists(args[1]), "Spice netlist file {} not found.".format(args[1]))
|
||||
debug.check(os.path.exists(args[2]), "HTML report file {} not found.".format(args[2]))
|
||||
sp_file = args[1]
|
||||
html_file = args[2]
|
||||
s.parse_html(html_file)
|
||||
|
|
|
|||
Loading…
Reference in New Issue