You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 259a4a6, it seems mpl was changed such that it cannot place UNPLACED macros if there are already existing FIXED macros in the FP area. If a user attempts to do mpl in this case, this logic will return an error:
"Found fixed instance {} inside the floorplan area.",
inst->getName());
}
}
}
[ERROR MPL-0050] Found fixed instance a/b/c/d/inst inside the floorplan area.
My understanding is that the original mpl algorithm could handle this scenario. Is that understanding correct, and if so, is there a workaround to support this in the new mpl? I notice there are checks to ignore fixed macros, which makes me think this is possible to support it, e.g.
The use case is: The RTL is modified but the reference FP DEF with fixed macros is not. Changes to add more macros in RTL and will require incremental placement, but I would like any original placement to be respected. If this is not currently possible, it would be great to support this use case.
Suggested Solution
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered:
@mikesinouye We never actually had the full support for partial macro placement i.e., having some macros placed and run mpl for others. Although these ignore checks exist in the clustering algorithm, the mechanism to handle fixed macros inside the annealer was never actually implemented.
The changes in 259a4a6 were to cover cases in which there are special fixed cells inside the core, but outside the area specified for the macro placement - these should not be touched by mpl.
I have some ideas to handle the pre-placed macros scenario.
Description
In 259a4a6, it seems mpl was changed such that it cannot place UNPLACED macros if there are already existing FIXED macros in the FP area. If a user attempts to do mpl in this case, this logic will return an error:
OpenROAD/src/mpl/src/clusterEngine.cpp
Lines 157 to 166 in 359623a
[ERROR MPL-0050] Found fixed instance a/b/c/d/inst inside the floorplan area.
My understanding is that the original mpl algorithm could handle this scenario. Is that understanding correct, and if so, is there a workaround to support this in the new mpl? I notice there are checks to ignore fixed macros, which makes me think this is possible to support it, e.g.
OpenROAD/src/mpl/src/clusterEngine.cpp
Lines 787 to 793 in 359623a
The use case is: The RTL is modified but the reference FP DEF with fixed macros is not. Changes to add more macros in RTL and will require incremental placement, but I would like any original placement to be respected. If this is not currently possible, it would be great to support this use case.
Suggested Solution
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: