Merge pull request #1389 from andrewb1999/fix-sdf-gen

Fix SDF generation
This commit is contained in:
litghost 2020-07-08 15:10:13 -07:00 committed by GitHub
commit 18ac5cffa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def read_raw_timings(fin, site):
speed_model_split = speed_model.split('_')
interconn_input = "_".join(speed_model_split[1:-1])
interconn_output = speed_model_split[-1]
celltype = "routing_bel"
celltype = "ROUTING_BEL"
if celltype not in timings['cells']:
timings['cells'][celltype] = dict()