diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-03 23:53:33 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-03 23:53:33 -0700 |
commit | dced12cbd2355604279c7277c8a48f584771dfb8 (patch) | |
tree | e802b563faf47c06c9022d4cde0ce79631623b19 /ecp5 | |
parent | 0a14e20f7332344d4c2f73c7ede54ef0258997f7 (diff) | |
parent | f5a1b93f0e9348437ece7fb7d46ac69af98536d0 (diff) | |
download | nextpnr-dced12cbd2355604279c7277c8a48f584771dfb8.tar.gz nextpnr-dced12cbd2355604279c7277c8a48f584771dfb8.tar.bz2 nextpnr-dced12cbd2355604279c7277c8a48f584771dfb8.zip |
Merge branch 'master' into slack_histogram
Conflicts:
common/timing.cc
Diffstat (limited to 'ecp5')
-rw-r--r-- | ecp5/main.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc index f40a5e61..dac7a635 100644 --- a/ecp5/main.cc +++ b/ecp5/main.cc @@ -162,12 +162,8 @@ int main(int argc, char *argv[]) if (!ctx->pack() && !ctx->force) log_error("Packing design failed.\n"); - if (vm.count("freq")) { + if (vm.count("freq")) ctx->target_freq = vm["freq"].as<double>() * 1e6; - ctx->user_freq = true; - } else { - log_warning("Target frequency not specified. Will optimise for max frequency.\n"); - } assign_budget(ctx.get()); ctx->check(); print_utilisation(ctx.get()); |