Increase again blockages area over SRAMs blocks.

This commit is contained in:
Jean-Paul Chaput 2021-04-17 12:56:40 +02:00
parent b0cfe8fc82
commit 445f5161da
1 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ class Macro ( object ):
for component in net.getComponents():
if isinstance(component,Rectilinear) and component.getLayer() == blockageMetal2:
bb = component.getBoundingBox()
bb.inflate( minSpacingMetal2/2 )
bb.inflate( minSpacingMetal2 )
Horizontal.create( component.getNet()
, blockageMetal2
, bb.getYCenter()
@ -155,7 +155,7 @@ class Macro ( object ):
, bb.getYMax() )
elif isinstance(component,Rectilinear) and component.getLayer() == blockageMetal4:
bb = component.getBoundingBox()
bb.inflate( minSpacingMetal4/2 )
bb.inflate( minSpacingMetal4 )
Horizontal.create( component.getNet()
, blockageMetal4
, bb.getYCenter()