Skip to content

Commit

Permalink
Block power straps up to top layer of block
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanku committed Jun 16, 2024
1 parent 5475322 commit 79ed89d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hammer/par/innovus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ def generate_floorplan_tcl(self) -> List[str]:
current_top_layer = None
if current_top_layer is not None:
bot_layer = self.get_stackup().get_metal_by_index(1).name
cover_layers = list(map(lambda m: m.name, self.get_stackup().get_metals_below_layer(current_top_layer)))
cover_layers = list(map(lambda m: m.name, self.get_stackup().get_metals_incl_layer(current_top_layer)))
output.append("create_route_halo -bottom_layer {b} -space {s} -top_layer {t} -inst {inst}".format(
inst=new_path, b=bot_layer, t=current_top_layer, s=spacing))

Expand Down

0 comments on commit 79ed89d

Please sign in to comment.