Skip to content

Commit c8fa4f9

Browse files
committed
Merge remote-tracking branch 'origin/master' into HEAD
2 parents 6f1707c + 7b4e7aa commit c8fa4f9

32 files changed

+1449
-828
lines changed

docs/user/FlowVariables.md

Lines changed: 275 additions & 264 deletions
Large diffs are not rendered by default.

flow/designs/nangate45/bp_be_top/metadata-base-ok.json

Lines changed: 233 additions & 224 deletions
Large diffs are not rendered by default.

flow/designs/nangate45/bp_be_top/rules-base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
35-
"value": 3684779,
35+
"value": 3494576,
3636
"compare": "<="
3737
},
3838
"detailedroute__route__drc_errors": {
@@ -48,7 +48,7 @@
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -0.36,
51+
"value": -0.59,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {

flow/designs/sky130hd/microwatt/metadata-base-ok.json

Lines changed: 259 additions & 247 deletions
Large diffs are not rendered by default.

flow/designs/sky130hd/microwatt/rules-base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"compare": "<="
2929
},
3030
"globalroute__antenna_diodes_count": {
31-
"value": 5686,
31+
"value": 7614,
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
@@ -44,7 +44,7 @@
4444
"compare": "<="
4545
},
4646
"detailedroute__antenna_diodes_count": {
47-
"value": 961,
47+
"value": 891,
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {

flow/scripts/cdl.tcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source $::env(SCRIPTS_DIR)/load.tcl
2+
erase_non_stage_variables final
23
load_design 6_final.odb 6_final.sdc
34

45
write_cdl -masters $::env(CDL_FILE) $::env(RESULTS_DIR)/6_final.cdl

flow/scripts/cts.tcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
utl::set_metrics_stage "cts__{}"
22
source $::env(SCRIPTS_DIR)/load.tcl
3+
erase_non_stage_variables cts
34
load_design 3_place.odb 3_place.sdc
45

56
# Clone clock tree inverters next to register loads

flow/scripts/defaults.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
dir_path = os.path.dirname(os.path.realpath(__file__))
77

8-
yaml_path = os.path.join(dir_path, "defaults.yaml")
8+
yaml_path = os.path.join(dir_path, "variables.yaml")
99
with open(yaml_path, "r") as file:
1010
data = yaml.safe_load(file)
1111

1212
for key, value in data.items():
13-
if value["value"] is None:
13+
if value.get("value", None) is None:
1414
continue
1515
print(f'{key}?={value["value"]}')

flow/scripts/defaults.yaml

Lines changed: 0 additions & 78 deletions
This file was deleted.

flow/scripts/density_fill.tcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source $::env(SCRIPTS_DIR)/load.tcl
2+
erase_non_stage_variables final
23
load_design 5_route.odb 5_route.sdc
34

45
if {[env_var_equals USE_FILL 1]} {

0 commit comments

Comments
 (0)