-
Notifications
You must be signed in to change notification settings - Fork 395
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
Congestion Aware Placement #2672
base: openfpga
Are you sure you want to change the base?
Conversation
…to-routing into congestion_placement
I suggest looking at the comments in the earlier PR and addressing them -- #2384 |
vpr/src/place/net_cost_handler.cpp
Outdated
@@ -54,6 +54,9 @@ enum class NetUpdateState { | |||
|
|||
const int MAX_FANOUT_CROSSING_COUNT = 50; | |||
|
|||
double cong_matrix[400][400]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs comments on what these are, what the overall congestion modeling approach is.
The approach seems to be very similar to a placement cost function that I wrote in my PhD and called NON_LINEAR_CONGESTION. At the time I measured that code it had little gain in routability for architectures with all channels the same width (in various chip regions) and the CPU time was high. Not sure if the trade-off is different with this code, but adding QoR data on some larger circuits would be important to check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, hard-coding 400 is not good.
I will address those. |
…to-routing into cong_placement
Embedding code for congestion aware placement for VPR.
Description
Related Issue
Motivation and Context
How Has This Been Tested?
Types of changes
Checklist: