[Mlir-commits] [mlir] [mlir][tosa][linalg] Pass local_bound attribute to named linalg ops (PR #146883)

Hsiangkai Wang llvmlistbot at llvm.org
Fri Jul 4 03:10:39 PDT 2025


Hsiangkai wrote:

> Just wanted to mention that RFFT2D and FFT2D also have the `local_bound` option, would they also need a similar update? (transpose_conv2d also has the option, but I didn't notice a linalg conversion for it)

RFFT2D and FFT2D are lowered to linalg.generic. I'm not sure how `local_bound` used in linalg.generic. That's why I didn't apply the modification to these two operations. TransposeConv2D is decomposed to a sequence of tosa operations and Conv2D. We may pass the attribute to Conv2D in the decomposition. I will add it. Thanks for your reminding.

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


More information about the Mlir-commits mailing list