Fix SRAM import hierarchy for new coriolis namespace.
This commit is contained in:
parent
4b15396444
commit
a31cf3d334
|
@ -21,13 +21,13 @@ The ``sram`` module provide base classes for SRAM assemby.
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
import traceback
|
import traceback
|
||||||
from ..helpers.io import ErrorMessage, WarningMessage
|
from ...helpers.io import ErrorMessage, WarningMessage
|
||||||
from ..helpers.overlay import UpdateSession
|
from ...helpers.overlay import UpdateSession
|
||||||
from ..helpers import trace, l, u, n
|
from ...helpers import trace, l, u, n
|
||||||
from ..Hurricane import DataBase, Breakpoint, DbU, Box, Net, Cell, \
|
from ...Hurricane import DataBase, Breakpoint, DbU, Box, Net, Cell, \
|
||||||
Instance, Transformation, PythonAttributes
|
Instance, Transformation, PythonAttributes
|
||||||
from .. import CRL
|
from ... import CRL
|
||||||
from .chip.configuration import GaugeConf
|
from ..block.configuration import GaugeConf
|
||||||
|
|
||||||
|
|
||||||
af = CRL.AllianceFramework.get()
|
af = CRL.AllianceFramework.get()
|
||||||
|
|
|
@ -182,7 +182,7 @@ from ...helpers import trace, l, u, n
|
||||||
from ...Hurricane import Breakpoint, DbU, Box, Net, Cell, Instance, \
|
from ...Hurricane import Breakpoint, DbU, Box, Net, Cell, Instance, \
|
||||||
Transformation, PythonAttributes
|
Transformation, PythonAttributes
|
||||||
from ... import CRL
|
from ... import CRL
|
||||||
from ..chip.configuration import GaugeConf
|
from ..block.configuration import GaugeConf
|
||||||
from .sram import Bus, Column, ColBlock, ColGroup, \
|
from .sram import Bus, Column, ColBlock, ColGroup, \
|
||||||
HeaderRow, BaseSRAM
|
HeaderRow, BaseSRAM
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue