-
Notifications
You must be signed in to change notification settings - Fork 415
[AP][FullLegalizer] Basic Min. Disturbance Full Legalizer #2921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
11920a1
b4f3453
4781809
1171a70
0fa47c6
8bd9625
ee09333
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
*/ | ||
enum class e_ap_full_legalizer { | ||
Naive, ///< The Naive Full Legalizer, which clusters atoms placed in the same tile and tries to place them in that tile according to the flat placement. | ||
APPack ///< The APPack Full Legalizer, which uses the flat placement to improve the Packer and Placer. | ||
APPack, ///< The APPack Full Legalizer, which uses the flat placement to improve the Packer and Placer. | ||
Basic_Min_Disturbance ///< The Basic Min. Disturbance Full Legalizer, which uses flat placement and tries to reconstruct clusters identically. The method for handling orphan clusters has not yet been determined. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would say something like "which tries to reconstruct a clustered placement as close to the incoming flat placement as it can". I would leave off the orphan cluster sentence for now. It is very easy to forget to remove that sentence. I recommend writing this sentence as if you finished the min disturbance full legalizer. |
||
}; | ||
|
Uh oh!
There was an error while loading. Please reload this page.