Skip to content

Commit

Permalink
fixed bug in getting AIE tiles from metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Schumacher <[email protected]>
  • Loading branch information
Paul Schumacher committed Oct 10, 2024
1 parent dfe921c commit c0e1976
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ AIETraceConfigFiletype::getTiles(const std::string& graph_name,

if (type == module_type::mem_tile)
return getMemoryTiles(graph_name, kernel_name);
if ((type == module_type::dma) && isAllKernel)
if (isAllKernel)
return getAllAIETiles(graph_name);

// Now search by graph-kernel pairs
Expand Down

0 comments on commit c0e1976

Please sign in to comment.