diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-08-04 10:32:07 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-08-04 10:32:07 +0200 |
commit | 96291f17aac62f9b58370c67e4eeff71adc848c1 (patch) | |
tree | a957f13f0dacfa4ac0066f2f872ed4d06dba7e61 /ecp5/main.cc | |
parent | 8d372b86f3aed86c7a8ef7869e92335bd965c2ae (diff) | |
parent | f5a1b93f0e9348437ece7fb7d46ac69af98536d0 (diff) | |
download | nextpnr-96291f17aac62f9b58370c67e4eeff71adc848c1.tar.gz nextpnr-96291f17aac62f9b58370c67e4eeff71adc848c1.tar.bz2 nextpnr-96291f17aac62f9b58370c67e4eeff71adc848c1.zip |
Merge branch 'master' of github.com:YosysHQ/nextpnr into lutperm
Diffstat (limited to 'ecp5/main.cc')
-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()); |