From 8ec848c88444b60111863a65abe7aa22809eb0cd Mon Sep 17 00:00:00 2001 From: Jock Tanner Date: Mon, 16 Mar 2020 16:43:12 +0000 Subject: [PATCH] Fix import. --- experiments7/doAlu16.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/experiments7/doAlu16.py b/experiments7/doAlu16.py index 5136323..f2c91bd 100755 --- a/experiments7/doAlu16.py +++ b/experiments7/doAlu16.py @@ -14,7 +14,9 @@ from Hurricane import ( Contact, Vertical, Pad, Pin, NetExternalComponents, ) from helpers import l, showPythonTrace -from plugins import ClockTreePlugin, RSavePlugin +from plugins import RSavePlugin + +import symbolic.cmos # do not remove af = CRL.AllianceFramework.get() @@ -155,8 +157,9 @@ def add(**kwargs): Pin.PlacementStatus.FIXED, METAL3, l(x), - l(y - 0), # Position. - l(2.0), l(2.0), # Size. + l(y - 0), + l(2.0), + l(2.0), ) pin.getNet().setExternal(True) NetExternalComponents.setExternal(pin) -- 2.30.2