Skip to content

Commit

Permalink
CR-1189595: Fixed issue where memory module events are not configured…
Browse files Browse the repository at this point in the history
… correctly (#7948)
  • Loading branch information
nishraptor authored Feb 15, 2024
1 parent 80460e8 commit ad38f34
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,10 @@ namespace xdp {
auto col = tile.col;
auto row = tile.row;
auto subtype = tile.subtype;
auto type = aie::getModuleType(row, mod);
auto type = aie::getModuleType(row, metadata->getAIETileRowOffset());

if (mod == XAIE_MEM_MOD && type == module_type::core)
type = module_type::dma;
if (!aie::profile::isValidType(type, mod))
continue;

Expand Down

0 comments on commit ad38f34

Please sign in to comment.