Shrink macro block external pins.
* Bug: In cumulus/plugins.macro.Macro, external west/east segments where slightly too long and conflicted with the METAL2 blockage.
This commit is contained in:
parent
f4514cecf3
commit
f2f5f687d0
|
@ -927,9 +927,9 @@ class Spares ( object ):
|
||||||
with UpdateSession():
|
with UpdateSession():
|
||||||
self.quadTree = QuadTree.create( self )
|
self.quadTree = QuadTree.create( self )
|
||||||
#self._addCapTies()
|
#self._addCapTies()
|
||||||
print( "X Centers of the QuadTree leaf" )
|
trace( 540, "\tX Centers of the QuadTree leaf\n" )
|
||||||
for x in self.quadTree.rleafX:
|
for x in self.quadTree.rleafX:
|
||||||
print( '| {}'.format(DbU.getValueString(x) ))
|
trace( 540, '\t| {}\n'.format(DbU.getValueString(x) ))
|
||||||
trace( 540, '-' )
|
trace( 540, '-' )
|
||||||
|
|
||||||
def rshowPoolUse ( self ):
|
def rshowPoolUse ( self ):
|
||||||
|
|
|
@ -233,7 +233,7 @@ class Macro ( object ):
|
||||||
, yOngrid
|
, yOngrid
|
||||||
, wwidth
|
, wwidth
|
||||||
, xMin
|
, xMin
|
||||||
, xMax - ppitch
|
, xMin + ppitch + ppitch/2
|
||||||
)
|
)
|
||||||
NetExternalComponents.setExternal( horizontal )
|
NetExternalComponents.setExternal( horizontal )
|
||||||
for component in eastPins:
|
for component in eastPins:
|
||||||
|
|
Loading…
Reference in New Issue