[Mlir-commits] [mlir] [mlir][linalg] Implement TilingInterface for winograd operators (PR #96184)
Hsiangkai Wang
llvmlistbot at llvm.org
Fri Aug 16 01:10:55 PDT 2024
================
@@ -3176,8 +3175,8 @@ LogicalResult WinogradOutputTransformOp::verify() {
return emitOpError("expect input width equals to input tile size");
expectedOutputShape[2] = (rightTransform ? m : 1) * valueTileW;
}
- expectedOutputShape[0] = valueShape[4];
- expectedOutputShape[3] = valueShape[5];
+ expectedOutputShape[0] = valueShape[getValueNDim()];
+ expectedOutputShape[3] = valueShape[getValueFDim()];
----------------
Hsiangkai wrote:
Done.
https://github.com/llvm/llvm-project/pull/96184
More information about the Mlir-commits
mailing list