Increase again blockages area over SRAMs blocks.
This commit is contained in:
parent
b0cfe8fc82
commit
445f5161da
|
@ -137,7 +137,7 @@ class Macro ( object ):
|
||||||
for component in net.getComponents():
|
for component in net.getComponents():
|
||||||
if isinstance(component,Rectilinear) and component.getLayer() == blockageMetal2:
|
if isinstance(component,Rectilinear) and component.getLayer() == blockageMetal2:
|
||||||
bb = component.getBoundingBox()
|
bb = component.getBoundingBox()
|
||||||
bb.inflate( minSpacingMetal2/2 )
|
bb.inflate( minSpacingMetal2 )
|
||||||
Horizontal.create( component.getNet()
|
Horizontal.create( component.getNet()
|
||||||
, blockageMetal2
|
, blockageMetal2
|
||||||
, bb.getYCenter()
|
, bb.getYCenter()
|
||||||
|
@ -155,7 +155,7 @@ class Macro ( object ):
|
||||||
, bb.getYMax() )
|
, bb.getYMax() )
|
||||||
elif isinstance(component,Rectilinear) and component.getLayer() == blockageMetal4:
|
elif isinstance(component,Rectilinear) and component.getLayer() == blockageMetal4:
|
||||||
bb = component.getBoundingBox()
|
bb = component.getBoundingBox()
|
||||||
bb.inflate( minSpacingMetal4/2 )
|
bb.inflate( minSpacingMetal4 )
|
||||||
Horizontal.create( component.getNet()
|
Horizontal.create( component.getNet()
|
||||||
, blockageMetal4
|
, blockageMetal4
|
||||||
, bb.getYCenter()
|
, bb.getYCenter()
|
||||||
|
|
Loading…
Reference in New Issue