From c6f2edc20d03f292ff19b1f709761f84d6a6eba6 Mon Sep 17 00:00:00 2001 From: Hunter Nichols Date: Wed, 29 Jul 2020 19:50:06 -0700 Subject: [PATCH] Changed warning message for multiport analytical characterization. --- compiler/characterizer/delay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/characterizer/delay.py b/compiler/characterizer/delay.py index afb9c7f6..3f5d61af 100644 --- a/compiler/characterizer/delay.py +++ b/compiler/characterizer/delay.py @@ -1350,7 +1350,7 @@ class delay(simulation): Return the analytical model results for the SRAM. """ if OPTS.num_rw_ports > 1 or OPTS.num_w_ports > 0 and OPTS.num_r_ports > 0: - debug.warning("Analytical characterization for multiple read ports may be inaccurate.") + debug.warning("In analytical mode, all ports have the timing of the first read port.") # Probe set to 0th bit, does not matter for analytical delay. self.set_probe('0'*self.addr_size, 0)