-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KernelDispatch] Enable unpack outer permutation for (batch)matmul (#…
…1011) This PR enables outer permutation of the level 0 unpack, which results in a logical objectFifo with outer dimension aligning with the columns instead of rows. This helps with splitting and finding a routing solution after splitting (as we always split logical objectFifos on the outermost non-unit dimension). For example, when targeting strix with an 8 column array, this results in an output L2 objectFifo with shape `8x4x32x32` instead of `4x8x32x32`. Splitting therefore happens on the dimension with size 8 instead of size 4, which helps with assigning one output buffer to every column and finding enough channels for routing the data from L1 to L2.
- Loading branch information
Showing
4 changed files
with
37 additions
and
24 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
Oops, something went wrong.