From c0e197683979c7b6770cc9e22bf7345225199970 Mon Sep 17 00:00:00 2001 From: Paul Schumacher Date: Thu, 10 Oct 2024 14:00:43 -0600 Subject: [PATCH] fixed bug in getting AIE tiles from metadata Signed-off-by: Paul Schumacher --- .../static_info/filetypes/aie_trace_config_filetype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime_src/xdp/profile/database/static_info/filetypes/aie_trace_config_filetype.cpp b/src/runtime_src/xdp/profile/database/static_info/filetypes/aie_trace_config_filetype.cpp index 114a046f7b..7cba2e8919 100755 --- a/src/runtime_src/xdp/profile/database/static_info/filetypes/aie_trace_config_filetype.cpp +++ b/src/runtime_src/xdp/profile/database/static_info/filetypes/aie_trace_config_filetype.cpp @@ -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