mirror of https://github.com/VLSIDA/OpenRAM.git
Over-ride build_graph in row/col caps to remove incorrect graph error.
This commit is contained in:
parent
63ba8647fb
commit
58f1b55e08
|
|
@ -20,3 +20,10 @@ class col_cap_bitcell_1port(bitcell_base):
|
|||
debug.info(2, "Create col_cap bitcell 1 port object")
|
||||
|
||||
self.no_instances = True
|
||||
|
||||
def build_graph(self, graph, inst_name, port_nets):
|
||||
"""
|
||||
Adds edges based on inputs/outputs.
|
||||
Overrides base class function.
|
||||
"""
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -20,3 +20,10 @@ class col_cap_bitcell_2port(bitcell_base):
|
|||
debug.info(2, "Create col_cap bitcell 2 port object")
|
||||
|
||||
self.no_instances = True
|
||||
|
||||
def build_graph(self, graph, inst_name, port_nets):
|
||||
"""
|
||||
Adds edges based on inputs/outputs.
|
||||
Overrides base class function.
|
||||
"""
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -20,3 +20,10 @@ class row_cap_bitcell_1port(bitcell_base):
|
|||
debug.info(2, "Create row_cap bitcell 1 port object")
|
||||
|
||||
self.no_instances = True
|
||||
|
||||
def build_graph(self, graph, inst_name, port_nets):
|
||||
"""
|
||||
Adds edges based on inputs/outputs.
|
||||
Overrides base class function.
|
||||
"""
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -20,3 +20,10 @@ class row_cap_bitcell_2port(bitcell_base):
|
|||
debug.info(2, "Create row_cap bitcell 2 port object")
|
||||
|
||||
self.no_instances = True
|
||||
|
||||
def build_graph(self, graph, inst_name, port_nets):
|
||||
"""
|
||||
Adds edges based on inputs/outputs.
|
||||
Overrides base class function.
|
||||
"""
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in New Issue