diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-30 22:21:53 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-30 22:21:53 -0700 |
commit | 87438542e51c91fd6bf838d4f2aceb3c79303a72 (patch) | |
tree | 2ecee675de9ff32c17ed7164884ae2d850388d2c | |
parent | 07e2c9ba996d5429d7c820c4854ca8a83049d846 (diff) | |
download | nextpnr-87438542e51c91fd6bf838d4f2aceb3c79303a72.tar.gz nextpnr-87438542e51c91fd6bf838d4f2aceb3c79303a72.tar.bz2 nextpnr-87438542e51c91fd6bf838d4f2aceb3c79303a72.zip |
assign_budget() not quietly
-rw-r--r-- | common/placer1.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/placer1.cc b/common/placer1.cc index 09cf9798..f2777a08 100644 --- a/common/placer1.cc +++ b/common/placer1.cc @@ -138,7 +138,7 @@ class SAPlacer if ((placed_cells - constr_placed_cells) % 500 != 0) log_info(" initial placement placed %d/%d cells\n", int(placed_cells - constr_placed_cells), int(autoplaced.size())); - assign_budget(ctx, true); + assign_budget(ctx); ctx->yield(); log_info("Running simulated annealing placer.\n"); |