diff options
author | gatecat <gatecat@ds0.me> | 2021-09-29 15:10:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 15:10:28 +0100 |
commit | bd137a8b50c220b2547030a4618aeefead2a1c38 (patch) | |
tree | e68e2aaafac168b97e25d9962230bf245c7c77a9 /common/timing.h | |
parent | 8b3e6711bcdab8c59bfa30f5eff8ed0bfa1bc302 (diff) | |
parent | 1db3a87c62acc79de0b3c7bd8c4c155c61c864ee (diff) | |
download | nextpnr-bd137a8b50c220b2547030a4618aeefead2a1c38.tar.gz nextpnr-bd137a8b50c220b2547030a4618aeefead2a1c38.tar.bz2 nextpnr-bd137a8b50c220b2547030a4618aeefead2a1c38.zip |
Merge pull request #810 from antmicro/write-timing-report
Timing report in JSON format
Diffstat (limited to 'common/timing.h')
-rw-r--r-- | common/timing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timing.h b/common/timing.h index 6548757b..b34fd636 100644 --- a/common/timing.h +++ b/common/timing.h @@ -252,7 +252,7 @@ void assign_budget(Context *ctx, bool quiet = false); // Perform timing analysis and print out the fmax, and optionally the // critical path void timing_analysis(Context *ctx, bool slack_histogram = true, bool print_fmax = true, bool print_path = false, - bool warn_on_failure = false); + bool warn_on_failure = false, bool update_results = false); NEXTPNR_NAMESPACE_END |