diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-06 12:02:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 12:02:55 -0700 |
commit | 0b1c67cad348d0470d81aa6d6e72b25a4972f525 (patch) | |
tree | 32e411ea827ff82f7af1e7e930a034cb019a75f1 /ice40/main.cc | |
parent | 6c8319e29a68d8d54b747e95c3f4a8df8a14d3ba (diff) | |
parent | 2fb934b107d63b43afcde0e724a91c33500fe95c (diff) | |
download | nextpnr-0b1c67cad348d0470d81aa6d6e72b25a4972f525.tar.gz nextpnr-0b1c67cad348d0470d81aa6d6e72b25a4972f525.tar.bz2 nextpnr-0b1c67cad348d0470d81aa6d6e72b25a4972f525.zip |
Merge pull request #38 from eddiehung/assign_budget_evenly
Restore original assign_budget behaviour (to distribute slack evenly)
Diffstat (limited to 'ice40/main.cc')
-rw-r--r-- | ice40/main.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ice40/main.cc b/ice40/main.cc index 358bf3c5..78236af1 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -366,6 +366,7 @@ int main(int argc, char *argv[]) if (!ctx->pack() && !ctx->force) log_error("Packing design failed.\n"); + assign_budget(ctx.get()); ctx->check(); print_utilisation(ctx.get()); if (!vm.count("pack-only")) { |