mirror of https://github.com/VLSIDA/OpenRAM.git
added support for more corner variations
This commit is contained in:
parent
ac17e71973
commit
65c5cc9fe7
|
|
@ -21,12 +21,27 @@ def process_name(corner):
|
||||||
"""
|
"""
|
||||||
Expands the names of the characterization corner types into something human friendly
|
Expands the names of the characterization corner types into something human friendly
|
||||||
"""
|
"""
|
||||||
|
if corner == "TS":
|
||||||
|
return "Typical - Slow"
|
||||||
if corner == "TT":
|
if corner == "TT":
|
||||||
return "Typical - Typical"
|
return "Typical - Typical"
|
||||||
|
if corner == "TF":
|
||||||
|
return "Typical - Fast"
|
||||||
|
|
||||||
if corner == "SS":
|
if corner == "SS":
|
||||||
return "Slow - Slow"
|
return "Slow - Slow"
|
||||||
|
if corner == "ST":
|
||||||
|
return "Slow - Typical"
|
||||||
|
if corner == "SF":
|
||||||
|
return "Slow - Fast"
|
||||||
|
|
||||||
|
if corner == "FS":
|
||||||
|
return "Fast - Slow"
|
||||||
|
if corner == "FT":
|
||||||
|
return "Fast - Typical"
|
||||||
if corner == "FF":
|
if corner == "FF":
|
||||||
return "Fast - Fast"
|
return "Fast - Fast"
|
||||||
|
|
||||||
else:
|
else:
|
||||||
return "custom"
|
return "custom"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue