diff options
-rw-r--r-- | common/placer1.cc | 1 | ||||
-rw-r--r-- | ice40/main.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/common/placer1.cc b/common/placer1.cc index c677a22a..09cf9798 100644 --- a/common/placer1.cc +++ b/common/placer1.cc @@ -138,6 +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); ctx->yield(); log_info("Running simulated annealing placer.\n"); diff --git a/ice40/main.cc b/ice40/main.cc index 865eea9e..5c9678db 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -411,7 +411,7 @@ int main(int argc, char *argv[]) if (!ctx->pack() && !ctx->force) log_error("Packing design failed.\n"); - assign_budget(ctx.get()); + //assign_budget(ctx.get()); ctx->check(); print_utilisation(ctx.get()); if (!vm.count("pack-only")) { |