[Mlir-commits] [mlir] [mlir][x86vector] AVX2 I8 Dot Op (PR #147908)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Jul 11 04:08:06 PDT 2025


================
@@ -86,6 +86,28 @@ x86vector::DotOp::getIntrinsicOperands(ArrayRef<Value> operands,
   return intrinsicOperands;
 }
 
+SmallVector<Value> x86vector::DotInt8Op::getIntrinsicOperands(
+    ArrayRef<Value> operands, const LLVMTypeConverter &typeConverter,
+    RewriterBase &rewriter) {
+  SmallVector<Value, 3> intrinsicOprnds;
+  intrinsicOprnds.push_back(operands[0]);
----------------
arun-thmn wrote:

ahh okay. Clean the code by wrapping the operands with their named letters.

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


More information about the Mlir-commits mailing list