mirror of https://github.com/VLSIDA/OpenRAM.git
Increase size for warning of column mux limit
This commit is contained in:
parent
3f1fbc3d90
commit
514f6fda27
|
|
@ -92,7 +92,7 @@ class sram_config:
|
||||||
elif tentative_num_cols < 6*word_size:
|
elif tentative_num_cols < 6*word_size:
|
||||||
return 4
|
return 4
|
||||||
else:
|
else:
|
||||||
if tentative_num_cols > 10*word_size:
|
if tentative_num_cols > 16*word_size:
|
||||||
debug.warning("Reaching column mux size limit. Consider increasing above 8-way.")
|
debug.warning("Reaching column mux size limit. Consider increasing above 8-way.")
|
||||||
return 8
|
return 8
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue