[Mlir-commits] [mlir] [mlir][x86vector] Lower vector.contract to FMA or packed type dot-product (PR #168074)
Arun Thangamani
llvmlistbot at llvm.org
Fri Nov 21 08:12:42 PST 2025
================
@@ -79,6 +79,16 @@ struct MaskHelper {
}
};
+//===----------------------------------------------------------------------===//
+
+// Lowers a FP32 type vector.contract operation to an FMA operation.
+void populateVectorContractToFMAPatterns(RewritePatternSet &patterns);
+
+// Lowers a BF16/Int8 type vector.contract operation to a BF16/Int8 dot-product
+// operation.
----------------
arun-thmn wrote:
Done. Thanks.
https://github.com/llvm/llvm-project/pull/168074
More information about the Mlir-commits
mailing list