Skip to content

Commit

Permalink
macro: Fix naming of wrapper
Browse files Browse the repository at this point in the history
Signed-off-by: gatecat <[email protected]>
  • Loading branch information
gatecat authored and jpc-lip6 committed Jan 31, 2024
1 parent 36751c5 commit d495254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cumulus/src/plugins/macro/macro.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def __init__ ( self, macroCell, gaugeName, hMargin, vMargin ):
trace( 550, '+,', '\tMacro.__init__() {}\n'.format(macroCell) )
af = AllianceFramework.get()
self.cell = macroCell
self.wrapper = af.createCell(f"{self.cell.getName()}_wrapper_")
self.wrapper = af.createCell(f"{self.cell.getName()}_wrapper")
inst = Instance.create(self.wrapper, f"inst", self.cell)
inst.setTransformation( Transformation() )
inst.setPlacementStatus( Instance.PlacementStatus.FIXED )
Expand Down

0 comments on commit d495254

Please sign in to comment.