[Mlir-commits] [mlir] [mlir] Clamp UnPackOp tiling sizes from operand tile (PR #112429)
Han-Chung Wang
llvmlistbot at llvm.org
Mon Oct 28 14:01:10 PDT 2024
================
@@ -265,7 +265,7 @@ module {
%c4 = arith.constant 4 : index
%c64 = arith.constant 64 : index
%c0 = arith.constant 0 : index
- %1 = scf.forall (%arg3, %arg4) in (2, 2) shared_outs(%arg5 = %arg2) -> (tensor<64x32xf32>) {
+ %1 = scf.forall (%arg3, %arg4) = (0, 0) to (64, 32) step (32, 32) shared_outs(%arg5 = %arg2) -> (tensor<64x32xf32>) {
----------------
hanhanW wrote:
Can you elaborate a bit why this tests the case? I'm confused that why no additional tests are added.
https://github.com/llvm/llvm-project/pull/112429
More information about the Mlir-commits
mailing list