[Mlir-commits] [mlir] [mlir][math] expand-math pass assumes the static shaped type (PR #128299)

Corentin Ferry llvmlistbot at llvm.org
Sun Feb 23 23:11:20 PST 2025


https://github.com/cferry-AMD commented:

Thanks! You may likewise also want to test unranked types:

```
func.func @unranked_ceil_op(%arg: tensor<*xf32>) -> tensor<*xf32>{
  %a = math.ceil %arg : tensor<*xf32>
  return %a: tensor<*xf32>
}
```

Also I see a constant created in `rsqrt` and we don't check for static types. I guess the same issue would apply there?

https://github.com/llvm/llvm-project/pull/128299


More information about the Mlir-commits mailing list