We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34641cb commit 5fe84ddCopy full SHA for 5fe84dd
vpr/src/place/place_constraints.cpp
@@ -146,7 +146,7 @@ void print_macro_constraint_error(const t_pl_macro& pl_macro) {
146
"The placement macro contains the following blocks: \n");
147
for (unsigned int i = 0; i < pl_macro.members.size(); i++) {
148
std::string blk_name = cluster_ctx.clb_nlist.block_name((pl_macro.members[i].blk_index));
149
- VTR_LOG("Block %s (#%zu) ", blk_name, size_t(pl_macro.members[i].blk_index));
+ VTR_LOG("Block %s (#%zu) ", blk_name.c_str(), size_t(pl_macro.members[i].blk_index));
150
}
151
VTR_LOG("\n");
152
VPR_ERROR(VPR_ERROR_PLACE, " \n Check that the above-mentioned placement macro blocks have compatible floorplan constraints.\n");
0 commit comments