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 1f4ded5 commit c83c160Copy full SHA for c83c160
vpr/src/base/read_place.cpp
@@ -327,8 +327,8 @@ void print_place(const char* net_file,
327
328
if (!place_ctx.block_locs.empty()) { //Only if placement exists
329
for (auto blk_id : cluster_ctx.clb_nlist.blocks()) {
330
- fprintf(fp, "%s\t", cluster_ctx.clb_nlist.block_name(blk_id).c_str());
331
- if (strlen(cluster_ctx.clb_nlist.block_name(blk_id).c_str()) < 8)
+ fprintf(fp, "%s\t", cluster_ctx.clb_nlist.block_pb(blk_id)->name);
+ if (strlen(cluster_ctx.clb_nlist.block_pb(blk_id)->name) < 8)
332
fprintf(fp, "\t");
333
334
fprintf(fp, "%d\t%d\t%d\t%d",
0 commit comments