Use library imports globally

This commit is contained in:
Eren Dogan
2022-11-27 13:01:20 -08:00
parent 037468d88d
commit fccdc3c45b
455 changed files with 3254 additions and 3083 deletions
+10 -10
View File
@@ -5,18 +5,18 @@
# (acting for and on behalf of Oklahoma State University)
# All rights reserved.
#
import debug
from .pgate import *
from base import vector
from base import logical_effort
from base.utils import round_to_grid
from base.errors import drc_error
import operator
from tech import drc, parameter, spice
from math import ceil
from globals import OPTS
from sram_factory import factory
from tech import cell_properties as cell_props
from openram import debug
from openram.base import vector
from openram.base import logical_effort
from openram.base.utils import round_to_grid
from openram.base.errors import drc_error
from openram.sram_factory import factory
from openram.tech import drc, parameter, spice
from openram.tech import cell_properties as cell_props
from openram import OPTS
from .pgate import *
class pinv(pgate):