mirror of https://github.com/VLSIDA/OpenRAM.git
Don't use single slew for nominal corner
This commit is contained in:
parent
35c91168f7
commit
3295a813d6
|
|
@ -474,17 +474,11 @@ def set_default_corner():
|
|||
|
||||
# Load scales are fanout multiples of the DFF input cap
|
||||
if (OPTS.load_scales == ""):
|
||||
if OPTS.nominal_corner_only:
|
||||
OPTS.load_scales = [4]
|
||||
else:
|
||||
OPTS.load_scales = [0.25, 1, 4]
|
||||
OPTS.load_scales = [0.25, 1, 4]
|
||||
|
||||
# Load scales are fanout multiples of the default spice input slew
|
||||
if (OPTS.slew_scales == ""):
|
||||
if OPTS.nominal_corner_only:
|
||||
OPTS.slew_scales = [1]
|
||||
else:
|
||||
OPTS.slew_scales = [0.25, 1, 4]
|
||||
OPTS.slew_scales = [0.25, 1, 8]
|
||||
|
||||
|
||||
def import_tech():
|
||||
|
|
|
|||
Loading…
Reference in New Issue