Skip to content

Commit

Permalink
Fix for CR-1178294: XRT AIE Status .json file does not include tile i…
Browse files Browse the repository at this point in the history
…nformation for a tile where only memory is used (#8147) (#8150)

(cherry picked from commit e5960ad)

Signed-off-by: saumya garg <[email protected]>
Co-authored-by: saumya garg <[email protected]>
  • Loading branch information
saumyag-xilinx and saumya garg authored May 8, 2024
1 parent f85115c commit e98e492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime_src/core/common/info_aie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -721,14 +721,14 @@ populate_buffer_only_cores(const boost::property_tree::ptree& pt,
boost::property_tree::ptree tile;
tile.put("column", node.second.data());
tile.put("row", dma_row_it->second.data());
if (dma_row_it != g_node.second.end())
dma_row_it++;
// Check whether this core is already added
if (is_duplicate_core(tile_array, tile))
continue;

populate_aie_core(core_info, tile);
tile_array.push_back({"", tile});
if (dma_row_it != g_node.second.end())
dma_row_it++;
}
}
}
Expand Down

0 comments on commit e98e492

Please sign in to comment.