aboutsummaryrefslogtreecommitdiffstats
path: root/common/router1.cc
diff options
context:
space:
mode:
authorEddie Hung <e.hung@imperial.ac.uk>2018-07-25 22:10:26 -0700
committerEddie Hung <e.hung@imperial.ac.uk>2018-07-25 22:10:26 -0700
commitb211dded3fa21859227a24b2129a680306fc5a65 (patch)
tree99cd69196b6f233e6299cdc613af27ffe351c94f /common/router1.cc
parent9d489e819863e431de3db58221f0d6fbe3387412 (diff)
downloadnextpnr-b211dded3fa21859227a24b2129a680306fc5a65.tar.gz
nextpnr-b211dded3fa21859227a24b2129a680306fc5a65.tar.bz2
nextpnr-b211dded3fa21859227a24b2129a680306fc5a65.zip
Fix min_slack computation, and print out critical path after routing
Diffstat (limited to 'common/router1.cc')
-rw-r--r--common/router1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/router1.cc b/common/router1.cc
index 8664819f..dae8d8cb 100644
--- a/common/router1.cc
+++ b/common/router1.cc
@@ -815,7 +815,7 @@ bool router1(Context *ctx)
ctx->check();
ctx->unlock();
#endif
- log_info("estimated Fmax = %.2f MHz\n", compute_fmax(ctx) / 1e6);
+ compute_fmax(ctx, true /* print_fmax */, true /* print_path */);
return true;
} catch (log_execution_error_exception) {
#ifndef NDEBUG