Skip to content

Commit 6afa603

Browse files
committed
Fixed CTS handling of some flow variables
Signed-off-by: Jeff Ng <[email protected]>
1 parent b2db0c3 commit 6afa603

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

flow/designs/ihp-sg13g2/ibex/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": 594,
31+
"value": 1088,
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
@@ -48,7 +48,7 @@
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -1.03,
51+
"value": -0.95,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {

flow/designs/ihp-sg13g2/riscv32i/rules-base.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"compare": "<="
2929
},
3030
"globalroute__antenna_diodes_count": {
31-
"value": 310,
31+
"value": 258,
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
@@ -40,15 +40,15 @@
4040
"compare": "<="
4141
},
4242
"detailedroute__antenna__violating__nets": {
43-
"value": 14,
43+
"value": 25,
4444
"compare": "<="
4545
},
4646
"detailedroute__antenna_diodes_count": {
4747
"value": 5,
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -0.98,
51+
"value": -0.72,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {
@@ -64,7 +64,7 @@
6464
"compare": "<="
6565
},
6666
"finish__timing__wns_percent_delay": {
67-
"value": -24.94,
67+
"value": -19.8,
6868
"compare": ">="
6969
}
7070
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"compare": "<="
4545
},
4646
"detailedroute__antenna_diodes_count": {
47-
"value": 2744,
47+
"value": 2674,
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {

flow/scripts/cts.tcl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ set cts_args [list \
1818
-sink_clustering_enable \
1919
-balance_levels]
2020

21-
append_env_var cts_args -distance_between_buffers CTS_BUF_DISTANCE 1
22-
append_env_var cts_args -sink_clustering_size CTS_CLUSTER_SIZE 1
23-
append_env_var cts_args -sink_clustering_max_diameter CTS_CLUSTER_DIAMETER 1
21+
append_env_var cts_args CTS_BUF_DISTANCE -distance_between_buffers 1
22+
append_env_var cts_args CTS_CLUSTER_SIZE -sink_clustering_size 1
23+
append_env_var cts_args CTS_CLUSTER_DIAMETER -sink_clustering_max_diameter 1
24+
append_env_var cts_args CTS_BUF_LIST -buf_list 1
2425

2526
if {[env_var_exists_and_non_empty CTS_ARGS]} {
2627
set cts_args $::env(CTS_ARGS)

flow/scripts/variables.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,11 @@ CTS_BUF_DISTANCE:
721721
Distance (in microns) between buffers.
722722
stages:
723723
- cts
724+
CTS_BUF_LIST:
725+
description: |
726+
List of cells used to construct the clock tree.
727+
stages:
728+
- cts
724729
CTS_CLUSTER_DIAMETER:
725730
description: >
726731
Maximum diameter (in microns) of sink cluster.

0 commit comments

Comments
 (0)