From 514f6fda2786cec6fa06d644e85d8925b86aba85 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 6 Dec 2018 13:57:38 -0800 Subject: [PATCH] Increase size for warning of column mux limit --- compiler/sram_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sram_config.py b/compiler/sram_config.py index 7ef7dd64..e4f94b4a 100644 --- a/compiler/sram_config.py +++ b/compiler/sram_config.py @@ -92,7 +92,7 @@ class sram_config: elif tentative_num_cols < 6*word_size: return 4 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.") return 8