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
+6 -6
View File
@@ -5,13 +5,13 @@
# (acting for and on behalf of Oklahoma State University)
# All rights reserved.
#
from .bitcell_base_array import bitcell_base_array
from globals import OPTS
from sram_factory import factory
from base import vector
import debug
from numpy import cumsum
from tech import layer_properties as layer_props
from openram import debug
from openram.base import vector
from openram.sram_factory import factory
from openram.tech import layer_properties as layer_props
from openram import OPTS
from .bitcell_base_array import bitcell_base_array
class global_bitcell_array(bitcell_base_array):