We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed3271 commit a5af0deCopy full SHA for a5af0de
1 file changed
src/ppl/src/IOPlacer.cpp
@@ -399,11 +399,13 @@ int IOPlacer::placeFallbackPins(bool random)
399
int last_slot = constraint.last_slot;
400
int available_slots = last_slot - first_slot;
401
if (available_slots < group.first.size()) {
402
- logger_->error(
403
- PPL,
404
- 90,
405
- "Group of size {} does not fit in constrained region.",
406
- group.first.size());
+ logger_->error(PPL,
+ 90,
+ "Group of size {} with pin {} does not fit in "
+ "constrained region. ({} available slots)",
+ group.first.size(),
407
+ bterm->getName(),
408
+ available_slots);
409
}
410
411
int mid_slot = (last_slot - first_slot) / 2 - group.first.size() / 2
0 commit comments