[Mlir-commits] [mlir] [mlir][x86vector] AVX512-BF16 Dot op (PR #124800)
Renato Golin
llvmlistbot at llvm.org
Tue Jan 28 10:03:51 PST 2025
================
@@ -271,6 +271,94 @@ def Vp2IntersectQIntrOp : AVX512_IntrOp<"vp2intersect.q.512", 2, [
VectorOfLengthAndType<[8], [I64]>:$b);
}
+//===----------------------------------------------------------------------===//
+// AVX512-BF16 op definitions
+//===----------------------------------------------------------------------===//
+
+// Operation that is part of the input dialect.
+class AVX512BF16_Op<string mnemonic, list<Trait> traits = []> :
+ Op<X86Vector_Dialect, "avx512bf16." # mnemonic, traits> {}
----------------
rengolin wrote:
Do we want to bite into the craziness of all variations of `avx512` in the namespace, or just call them all `avx512`?
https://github.com/llvm/llvm-project/pull/124800
More information about the Mlir-commits
mailing list