You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[GPU][DT] Fix matmul narrow dim selection (iree-org#21764)
The old logic:
```
if (ShapedType::isDynamic(n) || m < n) { ... }
if (ShapedType::isDynamic(m) || n < m) { ... }
```
could incorrectly select the narrow dimension when `m` is dynamic
(represented by `INT64_MIN`). This case should be handled by the second
`if`, but it is accidentally captured by the first `if`, since `m < n`
evaluates as true for a dynamic `m`.
This PR also fixes the iterationSizes issue that caused compilation
failures in llama with data tiling.
---------
Signed-off-by: Yu-Zhewen <[email protected]>
0 commit comments