-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Snippets] Fixed validation checks in BrgemmKernelExecutor::update_co…
…nfig (#25978) ### Details: - *`BrgemmKernelExecutor::update_config` checks Loops with the target `Brgemm` inside that this `Loop` is really by `M, K or N`. Previously we also checked `LoopPort.is_incremented == true`. However, the optimization `CleanRepeatedDataPointerShifts` may set `false` to this attribute when these ports are connected to Buffers with the same GPR (to avoid double pointer increments in execution). This PR lefts only checks for `LoopPort.is_incremented == false` for not incremented ports.* ### Tickets: - *149082*
- Loading branch information
1 parent
d8cbe92
commit 4e00130
Showing
2 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters