mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-08-30 01:48:33 +02:00
Added an exclusion for unused column mux paths to prevent multiple outputs paths in graph.
This commit is contained in:
@@ -230,3 +230,16 @@ class column_mux_array(design.design):
|
||||
to_layer=self.sel_layer,
|
||||
offset=br_out_offset_begin,
|
||||
directions=self.via_directions)
|
||||
|
||||
def graph_exclude_columns(self, column_include_num):
|
||||
"""
|
||||
Excludes all columns muxes unrelated to the target bit being simulated.
|
||||
Each mux in mux_inst corresponds to respective column in bitcell array.
|
||||
"""
|
||||
#stop = 34
|
||||
for i in range(len(self.mux_inst)):
|
||||
if i != column_include_num:
|
||||
self.graph_inst_exclude.add(self.mux_inst[i])
|
||||
debug.info(0, "Excluded mux {}".format(i))
|
||||
#if i == stop:
|
||||
# break
|
||||
Reference in New Issue
Block a user