We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08cc3a6 commit c895a2dCopy full SHA for c895a2d
flow/platforms/asap7/openRoad/pdn/BLOCKS_grid_strategy.tcl
@@ -31,7 +31,16 @@ add_pdn_connect -grid {top} -layers {M5 M6}
31
# Element grid
32
####################################
33
# The halo around the macro prevents pdn from blocking pin access
34
-define_pdn_grid -macro -cells $::env(MACROS) \
+
35
+set macro_names {}
36
37
+foreach macro [find_macros] {
38
+ set macro_name [[$macro getMaster] getName]
39
+ dict set macro_names $macro_name 1
40
+}
41
+set macro_names [dict keys $macro_names]
42
43
+define_pdn_grid -macro -cells $macro_names \
44
-halo "$::env(MACRO_HALO_X) $::env(MACRO_HALO_Y) $::env(MACRO_HALO_X) $::env(MACRO_HALO_Y)" \
45
-voltage_domains {CORE} -name ElementGrid
46
0 commit comments