[llvm-branch-commits] [mlir] [mlir][linalg] Restrict linalg.pack to not have artificial padding. (PR #149624)
Andrzej Warzyński via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jul 24 05:30:28 PDT 2025
================
----------------
banach-space wrote:
Should we also update:
```
- The following relationship for the tiled dimensions holds:
`shape(result)[inner_dims_pos[i]] = shape(source)[inner_dims_pos[i]] / inner_tiles[i]`.
```
as
```
- The following relationship for the tiled dimensions holds:
`shape(result)[inner_dims_pos[i]] = shape(source)[inner_dims_pos[i]] ⌈/⌉ inner_tiles[i]` (⌈/⌉ - CeilDiv).
```
https://github.com/llvm/llvm-project/pull/149624
More information about the llvm-branch-commits
mailing list