[Mlir-commits] [mlir] [mlir][linalg] Vectorization support for convolution of i1 type (PR #109480)
Han-Chung Wang
llvmlistbot at llvm.org
Mon Sep 23 09:56:37 PDT 2024
================
@@ -3627,6 +3635,7 @@ struct Conv1DGenerator
int strideW, dilationW;
Value lhsShaped, rhsShaped, resShaped;
ShapedType lhsShapedType, rhsShapedType, resShapedType;
+ std::optional<vector::CombiningKind> maybeKind;
----------------
hanhanW wrote:
Oh I see, thanks. @banach-space's comment makes sense to me. I think we can remove the optional because it is a requirement for conv vectorization?
https://github.com/llvm/llvm-project/pull/109480
More information about the Mlir-commits
mailing list