diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-03 23:51:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 23:51:21 -0700 |
commit | f5a1b93f0e9348437ece7fb7d46ac69af98536d0 (patch) | |
tree | 4b881ed0409bae10ac553dc5fe1771feb228712e /common/nextpnr.h | |
parent | 65d73eb9838e0bb8e6d089ecde3d4ffaf34e9e29 (diff) | |
parent | d66edf522348d1475f1b65d79804f37a751274b3 (diff) | |
download | nextpnr-f5a1b93f0e9348437ece7fb7d46ac69af98536d0.tar.gz nextpnr-f5a1b93f0e9348437ece7fb7d46ac69af98536d0.tar.bz2 nextpnr-f5a1b93f0e9348437ece7fb7d46ac69af98536d0.zip |
Merge pull request #30 from eddiehung/slack_redist_freq
Slack redistribution to auto-tune frequency only if --freq 0 set
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index f49b982e..c87a98d9 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -472,7 +472,7 @@ struct Context : Arch, DeterministicRNG bool force = false; bool timing_driven = true; float target_freq = 12e6; - bool user_freq = false; + bool auto_freq = false; int slack_redist_iter = 0; Context(ArchArgs args) : Arch(args) {} |