Skip to content

Commit

Permalink
remove sorts from some optimisation passes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravenslofty committed Jun 25, 2024
1 parent 5579685 commit d319f50
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion passes/opt/opt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ struct OptPass : public Pass {
}

design->optimize();
design->sort();
design->check();

log_header(design, fast_mode ? "Finished fast OPT passes.\n" : "Finished OPT passes. (There is nothing left to do.)\n");
Expand Down
1 change: 0 additions & 1 deletion passes/opt/opt_clean.cc
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,6 @@ struct CleanPass : public Pass {
log("Removed %d unused cells and %d unused wires.\n", count_rm_cells, count_rm_wires);

design->optimize();
design->sort();
design->check();

keep_cache.reset();
Expand Down
1 change: 0 additions & 1 deletion techlibs/ice40/ice40_opt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ struct Ice40OptPass : public Pass {
}

design->optimize();
design->sort();
design->check();

log_header(design, "Finished OPT passes. (There is nothing left to do.)\n");
Expand Down

0 comments on commit d319f50

Please sign in to comment.