added support for more corner variations

This commit is contained in:
Jesse Cirimelli-Low 2019-01-24 07:09:51 -08:00
parent ac17e71973
commit 65c5cc9fe7
1 changed files with 15 additions and 0 deletions

View File

@ -21,12 +21,27 @@ def process_name(corner):
"""
Expands the names of the characterization corner types into something human friendly
"""
if corner == "TS":
return "Typical - Slow"
if corner == "TT":
return "Typical - Typical"
if corner == "TF":
return "Typical - Fast"
if corner == "SS":
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":
return "Fast - Fast"
else:
return "custom"