Skip to content

Commit 224c8ac

Browse files
fixbug: print block type name and the number of tiles for overfull prs
1 parent a24e8ab commit 224c8ac

File tree

5 files changed

+48376
-93718
lines changed

5 files changed

+48376
-93718
lines changed

vpr/src/pack/attraction_groups.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void AttractionInfo::create_att_groups_for_all_regions() {
9797
*/
9898

9999
/*
100-
* Create an attraction group for each parition with an overfull region.
100+
* Create an attraction group for each partition with an overfull region.
101101
*/
102102

103103
for (int ipart = 0; ipart < num_parts; ipart++) {

vpr/src/pack/constraints_report.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bool floorplan_constraints_regions_overfull() {
4444
if (num_assigned_blocks > num_tiles) {
4545
floorplan_regions_overfull = true;
4646
floorplanning_ctx.overfull_partition_regions.push_back(pr);
47-
VTR_LOG("\n\nA partition including the following regions has been assigned %d blocks of type $s, "
47+
VTR_LOG("\n\nA partition including the following regions has been assigned %d blocks of type %s, "
4848
"but only has %d tiles of that type\n",
4949
num_assigned_blocks, block_type.name, num_tiles);
5050
for (const Region& reg : regions) {

0 commit comments

Comments
 (0)