From d10961b585f246666d7d933255676a64063a3801 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Wed, 21 Apr 2021 14:16:53 +0200 Subject: [PATCH] Put the clock tree connecting wires farther apart from the corona border. * Bug: In cumulus/plugins.chip.powerplane, while building the connexion from the corona border to the root of the HTree, the horizontal wire at the top was too close from the border causing a minimal spacing error in the DRC. Now put two tracks of distance. --- cumulus/src/plugins/alpha/chip/powerplane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/src/plugins/alpha/chip/powerplane.py b/cumulus/src/plugins/alpha/chip/powerplane.py index ec7328cc..fa4a40d6 100644 --- a/cumulus/src/plugins/alpha/chip/powerplane.py +++ b/cumulus/src/plugins/alpha/chip/powerplane.py @@ -539,7 +539,7 @@ class Builder ( object ): raise ErrorMessage( 1, 'Cannot build clock terminal as no clock is not known.' ) return for i in range(len(self.conf.coronaCks)): - self._connectClock( self.conf.coronaCks[i], i+1 ) + self._connectClock( self.conf.coronaCks[i], i+2 ) def doLayout ( self ): with UpdateSession():